pub trait IntoResult<T, E> {
    fn into_result(self) -> Result<T, E>;
}
Expand description

Convert Self to a Result.

Required Methods

Convert self to a Result.

Implementations on Foreign Types

Implementors