Trait try_from::TryInto [] [src]

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

Associated Types

type Err

Required Methods

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

Implementors