Type Alias diesel::helper_types::Contains

source ·
pub type Contains<Lhs, Rhs> = Grouped<Contains<Lhs, AsExpr<Rhs, Lhs>>>;
Available on crate feature postgres_backend only.
Expand description

The return type of lhs.contains(rhs) for array expressions

Aliased Type§

struct Contains<Lhs, Rhs>(pub Contains<Lhs, <Rhs as AsExpression<<Lhs as Expression>::SqlType>>::Expression>);

Fields§

§0: Contains<Lhs, <Rhs as AsExpression<<Lhs as Expression>::SqlType>>::Expression>