pub struct SweepRow {
pub z_h: f64,
pub snapshot: SolverSnapshot,
pub gf_mu: f64,
pub gf_y: f64,
pub gf_delta_n: Vec<f64>,
pub x_grid: Vec<f64>,
pub step_count: usize,
}Expand description
One row of a sweep: PDE result + Green’s function comparison at one z_h.
Fields§
§z_h: f64§snapshot: SolverSnapshot§gf_mu: f64§gf_y: f64§gf_delta_n: Vec<f64>§x_grid: Vec<f64>§step_count: usizeTrait Implementations§
Auto Trait Implementations§
impl Freeze for SweepRow
impl RefUnwindSafe for SweepRow
impl Send for SweepRow
impl Sync for SweepRow
impl Unpin for SweepRow
impl UnwindSafe for SweepRow
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