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),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(ResponseVerificationError)

Contains the error value