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