pub type FafbResult<T> = Result<T, FafbError>;
Result type for FAFB operations
pub enum FafbResult<T> { Ok(T), Err(FafbError), }
Contains the success value
Contains the error value