pub struct StepData {
pub iteration: usize,
pub residual: f64,
pub converged: bool,
pub solution: Vector,
}Fields§
§iteration: usize§residual: f64§converged: bool§solution: VectorAuto Trait Implementations§
impl Freeze for StepData
impl RefUnwindSafe for StepData
impl Send for StepData
impl Sync for StepData
impl Unpin for StepData
impl UnwindSafe for StepData
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