pub enum FirstOrder {
Contains(Contains),
Defined(Defined),
Undefined(Undefined),
Start(Start),
End(End),
Type(Type),
In(In),
Test(Test),
Matches(Matches),
Less(Less),
More(More),
}
Variants§
Contains(Contains)
Defined(Defined)
Undefined(Undefined)
Start(Start)
End(End)
Type(Type)
In(In)
Test(Test)
Matches(Matches)
Less(Less)
More(More)
Trait Implementations§
Source§impl Clone for FirstOrder
impl Clone for FirstOrder
Source§fn clone(&self) -> FirstOrder
fn clone(&self) -> FirstOrder
Returns a copy of the value. Read more
1.0.0 · 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 FirstOrder
impl Debug for FirstOrder
Source§impl<'de> Deserialize<'de> for FirstOrder
impl<'de> Deserialize<'de> for FirstOrder
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 From<FirstOrder> for Predicate
impl From<FirstOrder> for Predicate
Source§fn from(value: FirstOrder) -> Self
fn from(value: FirstOrder) -> Self
Converts to this type from the input type.
Source§impl PartialEq for FirstOrder
impl PartialEq for FirstOrder
Source§impl PredicateImpl for FirstOrder
impl PredicateImpl for FirstOrder
Source§impl Serialize for FirstOrder
impl Serialize for FirstOrder
impl Eq for FirstOrder
impl StructuralPartialEq for FirstOrder
Auto Trait Implementations§
impl Freeze for FirstOrder
impl RefUnwindSafe for FirstOrder
impl Send for FirstOrder
impl Sync for FirstOrder
impl Unpin for FirstOrder
impl UnwindSafe for FirstOrder
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