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