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