pub type OTResult<T> = Result<T, OTError>;
Result type for oblivious transfer operations.
pub enum OTResult<T> { Ok(T), Err(OTError), }
Contains the success value
Contains the error value