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.
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.