Result

Type Alias Result 

Source
pub type Result<T, R, W> = Result<T, Error<R, W>>;
Expand description

Abbreviates std::result::Result type

Aliased Type§

pub enum Result<T, R, W> {
    Ok(T),
    Err(Error<R, W>),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(Error<R, W>)

Contains the error value