pub type BduResult<T> = Result<T, BduError>;
Result type for BDU operations
pub enum BduResult<T> { Ok(T), Err(BduError), }
Contains the success value
Contains the error value