pub struct EqCondition {
pub path: String,
pub value: Value,
}Expand description
Inner equality condition (path + value).
Fields§
§path: StringDot-separated path to the field (e.g., “foo.bar.baz”).
value: ValueValue to match against.
Trait Implementations§
Source§impl Clone for EqCondition
impl Clone for EqCondition
Source§fn clone(&self) -> EqCondition
fn clone(&self) -> EqCondition
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 EqCondition
impl Debug for EqCondition
Source§impl<'de> Deserialize<'de> for EqCondition
impl<'de> Deserialize<'de> for EqCondition
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 EqCondition
impl PartialEq for EqCondition
Source§fn eq(&self, other: &EqCondition) -> bool
fn eq(&self, other: &EqCondition) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for EqCondition
impl Serialize for EqCondition
impl StructuralPartialEq for EqCondition
Auto Trait Implementations§
impl Freeze for EqCondition
impl RefUnwindSafe for EqCondition
impl Send for EqCondition
impl Sync for EqCondition
impl Unpin for EqCondition
impl UnsafeUnpin for EqCondition
impl UnwindSafe for EqCondition
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