GenResult

Type Alias GenResult 

Source
pub type GenResult<T> = Result<T, BoxDynError>;

Aliased Type§

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

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

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

Contains the error value