pub type Result<T> = Result<T, UbtError>;
Convenience result type for UBT operations.
pub enum Result<T> { Ok(T), Err(UbtError), }
Contains the success value
Contains the error value