[][src]Trait cubic_spline::TryInto

pub trait TryInto<T>: Sized {
    type Error;
    pub fn try_into(self) -> Result<T, Self::Error>;
}

The same as TryInto from std/core, except that it allows generic implementations. Details are in this issue

Official documentation

Associated Types

type Error[src]

The type returned in the event of a conversion error.

Loading content...

Required methods

pub fn try_into(self) -> Result<T, Self::Error>[src]

Performs the conversion.

Loading content...

Implementors

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

type Error = U::Error

Loading content...