Enum gluesql_core::ast::IndexOperator
source · pub enum IndexOperator {
Gt,
Lt,
GtEq,
LtEq,
Eq,
}
Variants§
Implementations§
source§impl IndexOperator
impl IndexOperator
Trait Implementations§
source§impl Clone for IndexOperator
impl Clone for IndexOperator
source§fn clone(&self) -> IndexOperator
fn clone(&self) -> IndexOperator
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 IndexOperator
impl Debug for IndexOperator
source§impl<'de> Deserialize<'de> for IndexOperator
impl<'de> Deserialize<'de> for IndexOperator
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<IndexOperator> for BinaryOperator
impl From<IndexOperator> for BinaryOperator
source§fn from(index_op: IndexOperator) -> Self
fn from(index_op: IndexOperator) -> Self
Converts to this type from the input type.
source§impl Hash for IndexOperator
impl Hash for IndexOperator
source§impl PartialEq<IndexOperator> for IndexOperator
impl PartialEq<IndexOperator> for IndexOperator
source§fn eq(&self, other: &IndexOperator) -> bool
fn eq(&self, other: &IndexOperator) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for IndexOperator
impl Serialize for IndexOperator
impl Eq for IndexOperator
impl StructuralEq for IndexOperator
impl StructuralPartialEq for IndexOperator
Auto Trait Implementations§
impl RefUnwindSafe for IndexOperator
impl Send for IndexOperator
impl Sync for IndexOperator
impl Unpin for IndexOperator
impl UnwindSafe for IndexOperator
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<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.