pub trait AsResult<T, I: Input> {
    fn as_result(self) -> Result<T, I>;
}

Required Methods

Implementors