pub struct FixtureFile {
pub request_match: FixtureMatch,
pub response: FixtureResponse,
}Expand description
Parsed shape of a single fixture file.
Fields§
§request_match: FixtureMatchMatch criteria.
response: FixtureResponsePinned response.
Trait Implementations§
Source§impl Clone for FixtureFile
impl Clone for FixtureFile
Source§fn clone(&self) -> FixtureFile
fn clone(&self) -> FixtureFile
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 FixtureFile
impl Debug for FixtureFile
Source§impl<'de> Deserialize<'de> for FixtureFile
impl<'de> Deserialize<'de> for FixtureFile
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
Auto Trait Implementations§
impl Freeze for FixtureFile
impl RefUnwindSafe for FixtureFile
impl Send for FixtureFile
impl Sync for FixtureFile
impl Unpin for FixtureFile
impl UnsafeUnpin for FixtureFile
impl UnwindSafe for FixtureFile
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