Type Alias Result

Source
pub type Result<O> = Result<O, Box<dyn Error + Send + Sync + 'static>>;

Aliased Type§

pub enum Result<O> {
    Ok(O),
    Err(Box<dyn Error + Sync + Send>),
}

Variants§

§1.0.0

Ok(O)

Contains the success value

§1.0.0

Err(Box<dyn Error + Sync + Send>)

Contains the error value