pub trait PreliminaryTryInto<T: Sized> {
    type Error: Fail;

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

Required Associated Types

Required Methods

Implementors