pub trait TryFrom<T>: Sized {
    type Err;
    fn try_from(_: T) -> Result<Self, Self::Err>;
}

Associated Types

Required methods

Implementations on Foreign Types

Implementors