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