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