pub struct VerificationInfo {
pub response: Option<VerifiedResponse>,
pub verification_version: u16,
}Expand description
Result of verifying the provided request/response pair’s certification.
Fields§
§response: Option<VerifiedResponse>Response object including the status code, body and headers that were included in the certification and passed verification. If verification failed then this object will be empty.
verification_version: u16The version of verification that was used to verify the response
Trait Implementations§
Auto Trait Implementations§
impl Freeze for VerificationInfo
impl RefUnwindSafe for VerificationInfo
impl Send for VerificationInfo
impl Sync for VerificationInfo
impl Unpin for VerificationInfo
impl UnwindSafe for VerificationInfo
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more