[][src]Trait tiberius::IntoSql

pub trait IntoSql: Send + Sync {
    pub fn into_sql(self) -> ColumnData<'static>;
}

A by-value conversion trait to a TDS type.

Required methods

pub fn into_sql(self) -> ColumnData<'static>[src]

Convert to a value understood by the SQL Server. Conversion by-value.

Loading content...

Implementations on Foreign Types

impl IntoSql for String[src]

impl IntoSql for Option<String>[src]

impl IntoSql for Vec<u8>[src]

impl IntoSql for Option<Vec<u8>>[src]

impl IntoSql for Option<XmlData>[src]

Loading content...

Implementors

impl IntoSql for XmlData[src]

Loading content...