Trait try_from::TryInto

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

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

Required Associated Types

Required Methods

Implementors