pub struct PhotonSweepRow {
pub z_h: f64,
pub snapshot: SolverSnapshot,
pub x_grid: Vec<f64>,
pub step_count: usize,
}Expand description
One row of a photon sweep: PDE result at one z_h for a fixed x_inj.
Fields§
§z_h: f64§snapshot: SolverSnapshot§x_grid: Vec<f64>§step_count: usizeTrait Implementations§
Source§impl Clone for PhotonSweepRow
impl Clone for PhotonSweepRow
Source§fn clone(&self) -> PhotonSweepRow
fn clone(&self) -> PhotonSweepRow
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for PhotonSweepRow
impl RefUnwindSafe for PhotonSweepRow
impl Send for PhotonSweepRow
impl Sync for PhotonSweepRow
impl Unpin for PhotonSweepRow
impl UnwindSafe for PhotonSweepRow
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more