pub type EFResult<T> = Result<T, EFError>;
Result type alias for rust-ef operations.
pub enum EFResult<T> { Ok(T), Err(EFError), }
Contains the success value
Contains the error value