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