pub trait IntoColumn<'t, S>: Typed + Clone {
// Provided method
fn into_column(self) -> Column<'t, S, Self::Typ> { ... }
}
Expand description
Trait for all values that can be used in queries.
This includes Columns from queries and rust values.
't
is the context in which this value is valid.S
is the schema in which this value is valid.
Provided Methods§
sourcefn into_column(self) -> Column<'t, S, Self::Typ>
fn into_column(self) -> Column<'t, S, Self::Typ>
Turn this value into a Column.
Object Safety§
This trait is not object safe.