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