Trait barc::TryInto

source ·
pub trait TryInto<T>: Sized {
    type Err: 'static;

    fn try_into(self) -> Result<T, Self::Err>;
}
Expand description

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

Required Associated Types

Required Methods

Implementors