pub enum GraphPredicateOp {
Show 22 variants
Equal,
NotEqual,
IsNull,
IsNotNull,
StartsWith,
NotStartsWith,
StartsWithAny,
NotStartsWithAny,
EndsWith,
NotEndsWith,
EndsWithAny,
NotEndsWithAny,
Contains,
NotContains,
ContainsAny,
NotContainsAny,
In,
NotIn,
GreaterThan,
GreaterThanOrEqual,
LessThan,
LessThanOrEqual,
}Variants§
Equal
NotEqual
IsNull
IsNotNull
StartsWith
NotStartsWith
StartsWithAny
NotStartsWithAny
EndsWith
NotEndsWith
EndsWithAny
NotEndsWithAny
Contains
NotContains
ContainsAny
NotContainsAny
In
NotIn
GreaterThan
GreaterThanOrEqual
LessThan
LessThanOrEqual
Trait Implementations§
Source§impl Clone for GraphPredicateOp
impl Clone for GraphPredicateOp
Source§fn clone(&self) -> GraphPredicateOp
fn clone(&self) -> GraphPredicateOp
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 moreimpl Copy for GraphPredicateOp
Source§impl Debug for GraphPredicateOp
impl Debug for GraphPredicateOp
Source§impl<'de> Deserialize<'de> for GraphPredicateOp
impl<'de> Deserialize<'de> for GraphPredicateOp
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
impl Eq for GraphPredicateOp
Source§impl PartialEq for GraphPredicateOp
impl PartialEq for GraphPredicateOp
Source§fn eq(&self, other: &GraphPredicateOp) -> bool
fn eq(&self, other: &GraphPredicateOp) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for GraphPredicateOp
impl Serialize for GraphPredicateOp
impl StructuralPartialEq for GraphPredicateOp
Auto Trait Implementations§
impl Freeze for GraphPredicateOp
impl RefUnwindSafe for GraphPredicateOp
impl Send for GraphPredicateOp
impl Sync for GraphPredicateOp
impl Unpin for GraphPredicateOp
impl UnsafeUnpin for GraphPredicateOp
impl UnwindSafe for GraphPredicateOp
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.