#[non_exhaustive]pub enum Dialect {
Show 13 variants
Ansi,
BigQuery,
ClickHouse,
Databricks,
DuckDb,
Generic,
Hive,
MsSql,
MySql,
PostgreSql,
RedshiftSql,
Snowflake,
SQLite,
}
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Ansi
BigQuery
ClickHouse
Databricks
DuckDb
Generic
Hive
MsSql
MySql
PostgreSql
RedshiftSql
Snowflake
SQLite
Trait Implementations§
Source§impl Ord for Dialect
impl Ord for Dialect
Source§impl PartialOrd for Dialect
impl PartialOrd for Dialect
impl Copy for Dialect
impl Eq for Dialect
impl StructuralPartialEq for Dialect
Auto Trait Implementations§
impl Freeze for Dialect
impl RefUnwindSafe for Dialect
impl Send for Dialect
impl Sync for Dialect
impl Unpin for Dialect
impl UnwindSafe for Dialect
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