CelResult

Type Alias CelResult 

Source
pub type CelResult<T> = Result<T, CelError>;

Aliased Type§

pub enum CelResult<T> {
    Ok(T),
    Err(CelError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(CelError)

Contains the error value