Enum partiql_ast::ast::CaseSensitivity
source · pub enum CaseSensitivity {
CaseSensitive,
CaseInsensitive,
}
Expand description
Is used to determine if variable lookup should be case-sensitive or not.
Variants§
Trait Implementations§
source§impl Clone for CaseSensitivity
impl Clone for CaseSensitivity
source§fn clone(&self) -> CaseSensitivity
fn clone(&self) -> CaseSensitivity
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 CaseSensitivity
impl Debug for CaseSensitivity
source§impl Hash for CaseSensitivity
impl Hash for CaseSensitivity
source§impl PartialEq<CaseSensitivity> for CaseSensitivity
impl PartialEq<CaseSensitivity> for CaseSensitivity
source§fn eq(&self, other: &CaseSensitivity) -> bool
fn eq(&self, other: &CaseSensitivity) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for CaseSensitivity
impl StructuralEq for CaseSensitivity
impl StructuralPartialEq for CaseSensitivity
Auto Trait Implementations§
impl RefUnwindSafe for CaseSensitivity
impl Send for CaseSensitivity
impl Sync for CaseSensitivity
impl Unpin for CaseSensitivity
impl UnwindSafe for CaseSensitivity
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.