Trait body_image::TryFrom[][src]

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

Similar to the TryFrom trait proposed but not yet available in std.

Associated Types

Required Methods

Implementors