pub type BError = Result<(), Box<dyn Error + Sync + Send>>;
pub enum BError { Ok(()), Err(Box<dyn Error + Sync + Send>), }
Contains the success value
Contains the error value