pub type AbeResult<T> = Result<T, AbeError>;
Result type for ABE operations.
pub enum AbeResult<T> { Ok(T), Err(AbeError), }
Contains the success value
Contains the error value