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

    fn try_from(value: T) -> Result<Self, Self::Error>;
}

Required Associated Types

Required Methods

Implementations on Foreign Types

Implementors