diesel/sqlite/expression/helper_types.rs
1use crate::dsl::AsExpr;
2use crate::expression::grouped::Grouped;
3
4/// The return type of `lhs.is(rhs)`.
5pub type Is<Lhs, Rhs> = Grouped<super::operators::Is<Lhs, AsExpr<Rhs, Lhs>>>;
6
7/// The return type of `lhs.is_not(rhs)`.
8pub type IsNot<Lhs, Rhs> = Grouped<super::operators::IsNot<Lhs, AsExpr<Rhs, Lhs>>>;