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