Enum cvode_wrap::StepKind[][src]

#[repr(i32)]
pub enum StepKind {
    Normal,
    OneStep,
}
Expand description

Type of integration step

Variants

Normal

The NORMALoption 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

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

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.