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.
'tis the context in which this value is valid.Sis the schema in which this value is valid.
You can not (yet) implement this trait yourself!
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.