pub type SbfResult<T> = Result<T, SbfError>;
Result type for SBF operations
pub enum SbfResult<T> { Ok(T), Err(SbfError), }
Contains the success value
Contains the error value