pub trait IntoResult<T> {
    type Err;
    fn into_result(self) -> Result<T, Self::Err>;
}

Associated Types

Required methods

Implementations on Foreign Types

Implementors