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