pub trait DialectHandler {
    fn dialect(&self) -> Dialect;

    fn use_top(&self) -> bool { ... }
    fn ident_quote(&self) -> char { ... }
}

Required Methods

Provided Methods

Implementors