pub trait IntoExpr<'column, S> {
type Typ: MyTyp;
// Required method
fn into_expr(self) -> Expr<'column, S, Self::Typ>;
}
Expand description
Trait for all values that can be used as expressions in queries.
pub trait IntoExpr<'column, S> {
type Typ: MyTyp;
// Required method
fn into_expr(self) -> Expr<'column, S, Self::Typ>;
}
Trait for all values that can be used as expressions in queries.