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