#[repr(i32)]pub enum StepKind {
Normal = 1,
OneStep = 2,
}
Expand description
Type of integration step
Variants§
Normal = 1
The NORMAL
option causes the solver to take internal steps
until it has reached or just passed the user-specified time.
The solver then interpolates in order to return an approximate
value of y at the desired time.
OneStep = 2
The CV_ONE_STEP
option tells the solver to take just one
internal step and then return thesolution at the point reached
by that step.
Auto Trait Implementations§
impl Freeze for StepKind
impl RefUnwindSafe for StepKind
impl Send for StepKind
impl Sync for StepKind
impl Unpin for StepKind
impl UnwindSafe for StepKind
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