pub enum SqlKeywordKind {
DataQuery,
DataMutation,
Definition,
Object,
Clause,
Constraint,
Modifier,
}Expand description
Broad categories for common SQL keywords.
Variants§
Trait Implementations§
Source§impl Clone for SqlKeywordKind
impl Clone for SqlKeywordKind
Source§fn clone(&self) -> SqlKeywordKind
fn clone(&self) -> SqlKeywordKind
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 moreSource§impl Debug for SqlKeywordKind
impl Debug for SqlKeywordKind
Source§impl Default for SqlKeywordKind
impl Default for SqlKeywordKind
Source§fn default() -> SqlKeywordKind
fn default() -> SqlKeywordKind
Returns the “default value” for a type. Read more
Source§impl Hash for SqlKeywordKind
impl Hash for SqlKeywordKind
Source§impl Ord for SqlKeywordKind
impl Ord for SqlKeywordKind
Source§fn cmp(&self, other: &SqlKeywordKind) -> Ordering
fn cmp(&self, other: &SqlKeywordKind) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for SqlKeywordKind
impl PartialEq for SqlKeywordKind
Source§fn eq(&self, other: &SqlKeywordKind) -> bool
fn eq(&self, other: &SqlKeywordKind) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for SqlKeywordKind
impl PartialOrd for SqlKeywordKind
impl Copy for SqlKeywordKind
impl Eq for SqlKeywordKind
impl StructuralPartialEq for SqlKeywordKind
Auto Trait Implementations§
impl Freeze for SqlKeywordKind
impl RefUnwindSafe for SqlKeywordKind
impl Send for SqlKeywordKind
impl Sync for SqlKeywordKind
impl Unpin for SqlKeywordKind
impl UnsafeUnpin for SqlKeywordKind
impl UnwindSafe for SqlKeywordKind
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