pub trait IntoSql<'a>: Send + Sync {
// Required method
fn into_sql(self) -> ColumnData<'a>;
}Expand description
A by-value conversion trait to a TDS type.
Required Methods§
Sourcefn into_sql(self) -> ColumnData<'a>
fn into_sql(self) -> ColumnData<'a>
Convert to a value understood by the SQL Server. Conversion by-value.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".