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