Skip to main content

CalResult

Type Alias CalResult 

Source
pub type CalResult<T> = Result<T, CalError>;
Expand description

Convenience alias used throughout the CAL module.

Aliased Type§

pub enum CalResult<T> {
    Ok(T),
    Err(CalError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(CalError)

Contains the error value