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

pub struct SolutionPoint<Y: OdeType, T: RealField = f64> {
    pub t: T,
    pub y: Y,
}

pairs the timestamp with the corresponding calculated value`

Fields

t: Ty: Y

Methods

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

pub fn new(t: T, y: Y) -> Self[src]

Trait Implementations

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

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

Auto Trait Implementations

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

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

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

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

impl<Y, T> UnwindSafe for SolutionPoint<Y, T> 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, 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>,