Result

Type Alias Result 

Source
pub type Result<T, ERR = SimErrorAny> = Result<T, ERR>;

Aliased Type§

pub enum Result<T, ERR = SimErrorAny> {
    Ok(T),
    Err(ERR),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(ERR)

Contains the error value