pub trait ModelColumn<E: Entity>: AsRef<str> + Display {
// Required method
fn into_column_expr(self) -> String;
}Expand description
An interface for the model column.
Required Methods§
Sourcefn into_column_expr(self) -> String
fn into_column_expr(self) -> String
Converts self into a column expression.