pub struct OdeResult {
pub t: f64,
pub y: Vec<f64>,
pub steps: usize,
}Expand description
Result of an ODE integration.
Fields§
§t: f64Final time.
y: Vec<f64>Final state.
steps: usizeNumber of steps taken.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for OdeResult
impl RefUnwindSafe for OdeResult
impl Send for OdeResult
impl Sync for OdeResult
impl Unpin for OdeResult
impl UnwindSafe for OdeResult
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