Skip to main content

CedarResult

Type Alias CedarResult 

Source
pub type CedarResult<T> = Result<T, CedarError>;

Aliased Type§

pub enum CedarResult<T> {
    Ok(T),
    Err(CedarError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(CedarError)

Contains the error value