pub struct GraphPropertyPredicate {
pub key: String,
pub op: GraphPredicateOp,
pub value: Value,
}Fields§
§key: String§op: GraphPredicateOp§value: ValueImplementations§
Trait Implementations§
Source§impl Clone for GraphPropertyPredicate
impl Clone for GraphPropertyPredicate
Source§fn clone(&self) -> GraphPropertyPredicate
fn clone(&self) -> GraphPropertyPredicate
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 GraphPropertyPredicate
impl Debug for GraphPropertyPredicate
Source§impl<'de> Deserialize<'de> for GraphPropertyPredicate
impl<'de> Deserialize<'de> for GraphPropertyPredicate
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 GraphPropertyPredicate
impl PartialEq for GraphPropertyPredicate
Source§fn eq(&self, other: &GraphPropertyPredicate) -> bool
fn eq(&self, other: &GraphPropertyPredicate) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for GraphPropertyPredicate
impl Serialize for GraphPropertyPredicate
impl StructuralPartialEq for GraphPropertyPredicate
Auto Trait Implementations§
impl Freeze for GraphPropertyPredicate
impl RefUnwindSafe for GraphPropertyPredicate
impl Send for GraphPropertyPredicate
impl Sync for GraphPropertyPredicate
impl Unpin for GraphPropertyPredicate
impl UnsafeUnpin for GraphPropertyPredicate
impl UnwindSafe for GraphPropertyPredicate
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