pub type ResponseVerificationResult<T = ()> = Result<T, ResponseVerificationError>;Expand description
Convenience type that represents the Result of performing response verification
Aliased Type§
pub enum ResponseVerificationResult<T = ()> {
Ok(T),
Err(ResponseVerificationError),
}