pub trait IntoExpr<'column, S>: Clone {
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.
Required Associated Types§
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.