Result

Type Alias Result 

Source
pub type Result<O, E> = Result<O, Error<E>>;
Expand description

convenience type alias

Aliased Type§

pub enum Result<O, E> {
    Ok(O),
    Err(Error<E>),
}

Variants§

§1.0.0

Ok(O)

Contains the success value

§1.0.0

Err(Error<E>)

Contains the error value