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