Enum gluesql_core::ast::IndexOperator
source · pub enum IndexOperator {
Gt,
Lt,
GtEq,
LtEq,
Eq,
}Variants
Gt
Lt
GtEq
LtEq
Eq
Implementations
sourceimpl IndexOperator
impl IndexOperator
Trait Implementations
sourceimpl Clone for IndexOperator
impl Clone for IndexOperator
sourcefn clone(&self) -> IndexOperator
fn clone(&self) -> IndexOperator
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for IndexOperator
impl Debug for IndexOperator
sourceimpl<'de> Deserialize<'de> for IndexOperator
impl<'de> Deserialize<'de> for IndexOperator
sourcefn 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
sourceimpl From<IndexOperator> for BinaryOperator
impl From<IndexOperator> for BinaryOperator
sourcefn from(index_op: IndexOperator) -> Self
fn from(index_op: IndexOperator) -> Self
Converts to this type from the input type.
sourceimpl Hash for IndexOperator
impl Hash for IndexOperator
sourceimpl PartialEq<IndexOperator> for IndexOperator
impl PartialEq<IndexOperator> for IndexOperator
sourcefn eq(&self, other: &IndexOperator) -> bool
fn eq(&self, other: &IndexOperator) -> bool
sourceimpl 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
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<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,
sourcefn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.