pub type OprfResult<T> = Result<T, OprfError>;
pub enum OprfResult<T> { Ok(T), Err(OprfError), }
Contains the success value
Contains the error value