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