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