Trait try_from::TryFrom

source ·
pub trait TryFrom<T>: Sized {
    type Err;

    fn try_from(_: T) -> Result<Self, Self::Err>;
}

Required Associated Types

Required Methods

Implementations on Foreign Types

Implementors