[][src]Struct diffeq::ode::solution::OdeSolution

pub struct OdeSolution<T: RealField, Y: OdeType> {
    pub tout: Vec<T>,
    pub yout: Vec<Y>,
}

Fields

tout: Vec<T>

Vector of points at which solutions were obtained

yout: Vec<Y>

solutions at times tout, stored as a vector yout

Methods

impl<T: RealField, Y: OdeType> OdeSolution<T, Y>[src]

pub fn zipped(self) -> Vec<(T, Y)>[src]

pair each timestep with the corresponding output

Trait Implementations

impl<T: Clone + RealField, Y: Clone + OdeType> Clone for OdeSolution<T, Y>[src]

impl<T: Debug + RealField, Y: Debug + OdeType> Debug for OdeSolution<T, Y>[src]

impl<T: RealField, Y: OdeType> Default for OdeSolution<T, Y>[src]

impl<T: RealField, Y: OdeType> Display for OdeSolution<T, Y>[src]

Auto Trait Implementations

impl<T, Y> RefUnwindSafe for OdeSolution<T, Y> where
    T: RefUnwindSafe,
    Y: RefUnwindSafe

impl<T, Y> Send for OdeSolution<T, Y> where
    Y: Send

impl<T, Y> Sync for OdeSolution<T, Y> where
    Y: Sync

impl<T, Y> Unpin for OdeSolution<T, Y> where
    T: Unpin,
    Y: Unpin

impl<T, Y> UnwindSafe for OdeSolution<T, Y> where
    T: UnwindSafe,
    Y: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<SS, SP> SupersetOf<SS> for SP where
    SS: SubsetOf<SP>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,