pub type IsNot<Lhs, Rhs> = Grouped<IsNot<Lhs, AsExpr<Rhs, Lhs>>>;
Available on crate feature
sqlite
only.Expand description
The return type of lhs.is_not(rhs)
.
Aliased Type§
struct IsNot<Lhs, Rhs>(pub IsNot<Lhs, <Rhs as AsExpression<<Lhs as Expression>::SqlType>>::Expression>);
Fields§
§0: IsNot<Lhs, <Rhs as AsExpression<<Lhs as Expression>::SqlType>>::Expression>