Struct diesel::query_builder::where_clause::WhereClause [] [src]

pub struct WhereClause<Expr>(_);

Trait Implementations

impl<Expr: Debug> Debug for WhereClause<Expr>
[src]

Formats the value using the given formatter.

impl<Expr: Clone> Clone for WhereClause<Expr>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<Expr: Copy> Copy for WhereClause<Expr>
[src]

impl<DB, Expr> QueryFragment<DB> for WhereClause<Expr> where
    DB: Backend,
    Expr: QueryFragment<DB>, 
[src]

impl<T> QueryId for WhereClause<T> where
    T: QueryId
[src]

impl<Expr, Predicate> WhereAnd<Predicate> for WhereClause<Expr> where
    Expr: Expression<SqlType = Bool>,
    Predicate: Expression<SqlType = Bool>, 
[src]

impl<'a, DB, Predicate> Into<Option<Box<QueryFragment<DB> + 'a>>> for WhereClause<Predicate> where
    DB: Backend,
    Predicate: QueryFragment<DB> + 'a, 
[src]

Performs the conversion.