pub enum Dialect {
Generic,
PostgreSql,
SQLServer,
}Expand description
The SQL dialect to use. This affects parsing of special characters.
Variants§
Generic
Generic SQL syntax, most dialect-specific constructs are disabled
PostgreSql
Enables array syntax ([, ]) and operators
SQLServer
Enables [bracketed identifiers] and @variables
Trait Implementations§
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