Struct diesel::mysql::MysqlQueryBuilder [] [src]

pub struct MysqlQueryBuilder { /* fields omitted */ }

The MySQL query builder

Methods

impl MysqlQueryBuilder
[src]

[src]

Constructs a new query builder with an empty query

Trait Implementations

impl Default for MysqlQueryBuilder
[src]

[src]

Returns the "default value" for a type. Read more

impl QueryBuilder<Mysql> for MysqlQueryBuilder
[src]

[src]

Add sql to the end of the query being constructed.

[src]

Quote identifier, and add it to the end of the query being constructed. Read more

[src]

Add a placeholder for a bind parameter to the end of the query being constructed. Read more

[src]

Returns the constructed SQL query.

Auto Trait Implementations