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