Trait body_image::TryInto[][src]

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

Similar to the TryInto trait proposed but not yet available in std. Blanket implemented for all TryFrom.

Associated Types

Required Methods

Implementors