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