pub trait IntoSimpleExpr {
// Required method
fn into_simple_expr(self) -> SimpleExpr;
}Expand description
Conversion into a SimpleExpr. Implemented for entity columns so they
can be used anywhere a sea_query expression is expected.
Required Methodsยง
Sourcefn into_simple_expr(self) -> SimpleExpr
fn into_simple_expr(self) -> SimpleExpr
Build the SimpleExpr.
Dyn Compatibilityยง
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".