pub struct DevFixtureAssertion {
pub path: String,
pub expected: Option<JsonValue>,
pub actual: Option<JsonValue>,
pub kind: DevFixtureAssertionKind,
pub message: String,
}Fields§
§path: String§expected: Option<JsonValue>§actual: Option<JsonValue>§kind: DevFixtureAssertionKind§message: StringTrait Implementations§
Source§impl Clone for DevFixtureAssertion
impl Clone for DevFixtureAssertion
Source§fn clone(&self) -> DevFixtureAssertion
fn clone(&self) -> DevFixtureAssertion
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 DevFixtureAssertion
impl Debug for DevFixtureAssertion
Source§impl<'de> Deserialize<'de> for DevFixtureAssertion
impl<'de> Deserialize<'de> for DevFixtureAssertion
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 DevFixtureAssertion
impl PartialEq for DevFixtureAssertion
Source§fn eq(&self, other: &DevFixtureAssertion) -> bool
fn eq(&self, other: &DevFixtureAssertion) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl RunxSchema for DevFixtureAssertion
impl RunxSchema for DevFixtureAssertion
Source§fn json_schema() -> Value
fn json_schema() -> Value
The inlined JSON Schema for this type.
Source§impl Serialize for DevFixtureAssertion
impl Serialize for DevFixtureAssertion
impl StructuralPartialEq for DevFixtureAssertion
Auto Trait Implementations§
impl Freeze for DevFixtureAssertion
impl RefUnwindSafe for DevFixtureAssertion
impl Send for DevFixtureAssertion
impl Sync for DevFixtureAssertion
impl Unpin for DevFixtureAssertion
impl UnsafeUnpin for DevFixtureAssertion
impl UnwindSafe for DevFixtureAssertion
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