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