[][src]Struct diffeq::ode::options::Reltol

pub struct Reltol(pub f64);

An integration step is accepted if E <= reltol*abs(y)

Trait Implementations

impl Clone for Reltol[src]

impl Debug for Reltol[src]

impl Default for Reltol[src]

impl Deref for Reltol[src]

type Target = f64

The resulting type after dereferencing.

impl DerefMut for Reltol[src]

impl Display for Reltol[src]

impl From<f64> for Reltol[src]

impl Into<OdeOption> for Reltol[src]

impl OdeOp for Reltol[src]

impl PartialEq<Reltol> for Reltol[src]

impl StructuralPartialEq for Reltol[src]

Auto Trait Implementations

impl RefUnwindSafe for Reltol

impl Send for Reltol

impl Sync for Reltol

impl Unpin for Reltol

impl UnwindSafe for Reltol

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>,