Trait sea_query::backend::QuotedBuilder[][src]

pub trait QuotedBuilder {
    fn quote(&self) -> char { ... }
}

Provided methods

fn quote(&self) -> char[src]

The type of quote the builder uses.

Implementors

impl QuotedBuilder for MysqlQueryBuilder[src]

This is supported on crate feature backend-mysql only.

impl QuotedBuilder for PostgresQueryBuilder[src]

This is supported on crate feature backend-postgres only.

fn quote(&self) -> char[src]

impl QuotedBuilder for SqliteQueryBuilder[src]

This is supported on crate feature backend-sqlite only.