and

Function and 

Source
pub fn and<'a, V, I, E>(conditions: I) -> SQLExpr<'a, V, Bool, NonNull, Scalar>
where V: SQLParam + 'a, I: IntoIterator<Item = E>, E: ToSQL<'a, V>,
Expand description

Logical AND of multiple conditions.

Returns a boolean expression that is true if all conditions are true. Accepts any iterable of items that implement ToSQL.