pub type Result<T> = Result<T, BbfError>;
result type using BBFerror
standard result type for all BBF operations, combining color_eyre’s result with BBFerror
pub enum Result<T> { Ok(T), Err(BbfError), }
Contains the success value
Contains the error value