#[non_exhaustive]pub enum DialectValue {
Show 17 variants
BigqueryDialect(Box<BigQueryDialect>),
HiveqlDialect(Box<HiveQLDialect>),
RedshiftDialect(Box<RedshiftDialect>),
TeradataDialect(Box<TeradataDialect>),
OracleDialect(Box<OracleDialect>),
SparksqlDialect(Box<SparkSQLDialect>),
SnowflakeDialect(Box<SnowflakeDialect>),
NetezzaDialect(Box<NetezzaDialect>),
AzureSynapseDialect(Box<AzureSynapseDialect>),
VerticaDialect(Box<VerticaDialect>),
SqlServerDialect(Box<SQLServerDialect>),
PostgresqlDialect(Box<PostgresqlDialect>),
PrestoDialect(Box<PrestoDialect>),
MysqlDialect(Box<MySQLDialect>),
Db2Dialect(Box<DB2Dialect>),
SqliteDialect(Box<SQLiteDialect>),
GreenplumDialect(Box<GreenplumDialect>),
}Expand description
The possible dialect options that this message represents.
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.
BigqueryDialect(Box<BigQueryDialect>)
The BigQuery dialect
HiveqlDialect(Box<HiveQLDialect>)
The HiveQL dialect
RedshiftDialect(Box<RedshiftDialect>)
The Redshift dialect
TeradataDialect(Box<TeradataDialect>)
The Teradata dialect
OracleDialect(Box<OracleDialect>)
The Oracle dialect
SparksqlDialect(Box<SparkSQLDialect>)
The SparkSQL dialect
SnowflakeDialect(Box<SnowflakeDialect>)
The Snowflake dialect
NetezzaDialect(Box<NetezzaDialect>)
The Netezza dialect
AzureSynapseDialect(Box<AzureSynapseDialect>)
The Azure Synapse dialect
VerticaDialect(Box<VerticaDialect>)
The Vertica dialect
SqlServerDialect(Box<SQLServerDialect>)
The SQL Server dialect
PostgresqlDialect(Box<PostgresqlDialect>)
The Postgresql dialect
PrestoDialect(Box<PrestoDialect>)
The Presto dialect
MysqlDialect(Box<MySQLDialect>)
The MySQL dialect
Db2Dialect(Box<DB2Dialect>)
DB2 dialect
SqliteDialect(Box<SQLiteDialect>)
SQLite dialect
GreenplumDialect(Box<GreenplumDialect>)
Greenplum dialect
Trait Implementations§
Source§impl Clone for DialectValue
impl Clone for DialectValue
Source§fn clone(&self) -> DialectValue
fn clone(&self) -> DialectValue
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 DialectValue
impl Debug for DialectValue
Source§impl PartialEq for DialectValue
impl PartialEq for DialectValue
impl StructuralPartialEq for DialectValue
Auto Trait Implementations§
impl Freeze for DialectValue
impl RefUnwindSafe for DialectValue
impl Send for DialectValue
impl Sync for DialectValue
impl Unpin for DialectValue
impl UnwindSafe for DialectValue
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