pub struct GenericDialect;Expand description
Generic SQL dialect (ANSI SQL)
Trait Implementations§
Source§impl DialectImpl for GenericDialect
impl DialectImpl for GenericDialect
Source§fn dialect_type(&self) -> DialectType
fn dialect_type(&self) -> DialectType
Returns the
DialectType that identifies this dialect.Source§fn tokenizer_config(&self) -> TokenizerConfig
fn tokenizer_config(&self) -> TokenizerConfig
Returns the tokenizer configuration for this dialect. Read more
Source§fn generator_config(&self) -> GeneratorConfig
fn generator_config(&self) -> GeneratorConfig
Returns the generator configuration for this dialect. Read more
Source§fn generator_config_for_expr(&self, _expr: &Expression) -> GeneratorConfig
fn generator_config_for_expr(&self, _expr: &Expression) -> GeneratorConfig
Returns a generator configuration tailored to a specific expression. Read more
Source§fn transform_expr(&self, expr: Expression) -> Result<Expression>
fn transform_expr(&self, expr: Expression) -> Result<Expression>
Transforms a single expression node for this dialect, without recursing into children. Read more
Source§fn preprocess(&self, expr: Expression) -> Result<Expression>
fn preprocess(&self, expr: Expression) -> Result<Expression>
Applies whole-tree preprocessing transforms before the recursive per-node pass. Read more
Auto Trait Implementations§
impl Freeze for GenericDialect
impl RefUnwindSafe for GenericDialect
impl Send for GenericDialect
impl Sync for GenericDialect
impl Unpin for GenericDialect
impl UnwindSafe for GenericDialect
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