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