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