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.