pub type CedarResult<T> = Result<T, CedarError>;
pub enum CedarResult<T> { Ok(T), Err(CedarError), }
Contains the success value
Contains the error value