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