pub struct OdeState {
pub t: f64,
pub y: Vec<f64>,
}Expand description
State vector for an ODE system.
Fields§
§t: f64§y: Vec<f64>Trait Implementations§
Auto Trait Implementations§
impl Freeze for OdeState
impl RefUnwindSafe for OdeState
impl Send for OdeState
impl Sync for OdeState
impl Unpin for OdeState
impl UnsafeUnpin for OdeState
impl UnwindSafe for OdeState
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