pub enum DialectKind {
Ansi,
Postgres,
Tsql,
}Expand description
Supported SQL dialects.
Variants§
Implementations§
Source§impl DialectKind
impl DialectKind
Sourcepub fn lexer_config(self) -> LexerConfig
pub fn lexer_config(self) -> LexerConfig
Get the lexer configuration for this dialect.
Trait Implementations§
Source§impl Clone for DialectKind
impl Clone for DialectKind
Source§fn clone(&self) -> DialectKind
fn clone(&self) -> DialectKind
Returns a duplicate 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 DialectKind
impl Debug for DialectKind
Source§impl Default for DialectKind
impl Default for DialectKind
Source§fn default() -> DialectKind
fn default() -> DialectKind
Returns the “default value” for a type. Read more
Source§impl Display for DialectKind
impl Display for DialectKind
Source§impl FromStr for DialectKind
impl FromStr for DialectKind
Source§impl Hash for DialectKind
impl Hash for DialectKind
Source§impl PartialEq for DialectKind
impl PartialEq for DialectKind
Source§impl TryFrom<&str> for DialectKind
impl TryFrom<&str> for DialectKind
impl Copy for DialectKind
impl Eq for DialectKind
impl StructuralPartialEq for DialectKind
Auto Trait Implementations§
impl Freeze for DialectKind
impl RefUnwindSafe for DialectKind
impl Send for DialectKind
impl Sync for DialectKind
impl Unpin for DialectKind
impl UnsafeUnpin for DialectKind
impl UnwindSafe for DialectKind
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