Trait diesel::query_builder::where_clause::WhereAnd
[−]
[src]
pub trait WhereAnd<Predicate> {
type Output;
fn and(self, predicate: Predicate) -> Self::Output;
}
Associated Types
type Output
Required Methods
Implementors
impl<Predicate> WhereAnd<Predicate> for NoWhereClause where Predicate: Expression<SqlType=Bool>impl<Expr, Predicate> WhereAnd<Predicate> for WhereClause<Expr> where Expr: Expression<SqlType=Bool>,
Predicate: Expression<SqlType=Bool>