pub struct Verification {
pub http_request: Option<HttpRequest>,
pub http_response: Option<HttpResponse>,
pub times: Option<VerificationTimes>,
pub maximum_number_of_request_to_return_in_verification_failure: Option<u32>,
}Expand description
A verification request sent to MockServer.
At least one of http_request or http_response must be set.
http_response uses the same HttpResponse type as expectations —
the server matches against the recorded response’s status code, headers,
and body.
Fields§
§http_request: Option<HttpRequest>§http_response: Option<HttpResponse>§times: Option<VerificationTimes>§maximum_number_of_request_to_return_in_verification_failure: Option<u32>Trait Implementations§
Source§impl Clone for Verification
impl Clone for Verification
Source§fn clone(&self) -> Verification
fn clone(&self) -> Verification
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for Verification
impl Debug for Verification
Source§impl<'de> Deserialize<'de> for Verification
impl<'de> Deserialize<'de> for Verification
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for Verification
impl PartialEq for Verification
Source§fn eq(&self, other: &Verification) -> bool
fn eq(&self, other: &Verification) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for Verification
impl Serialize for Verification
impl StructuralPartialEq for Verification
Auto Trait Implementations§
impl Freeze for Verification
impl RefUnwindSafe for Verification
impl Send for Verification
impl Sync for Verification
impl Unpin for Verification
impl UnsafeUnpin for Verification
impl UnwindSafe for Verification
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