[][src]Trait try_from::TryInto

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

Associated Types

type Err

Loading content...

Required methods

fn try_into(self) -> Result<T, Self::Err>

Loading content...

Implementors

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

type Err = U::Err

Loading content...