[][src]Struct sqlx::Mssql

pub struct Mssql;
This is supported on crate feature mssql only.

MSSQL database driver.

Trait Implementations

impl Database for Mssql[src]

type Connection = MssqlConnection

The concrete Connection implementation for this database.

type TransactionManager = MssqlTransactionManager

The concrete TransactionManager implementation for this database.

type Row = MssqlRow

The concrete Row implementation for this database.

type Done = MssqlDone

The concrete Done implementation for this database.

type Column = MssqlColumn

The concrete Column implementation for this database.

type TypeInfo = MssqlTypeInfo

The concrete TypeInfo implementation for this database.

type Value = MssqlValue

The concrete type used to hold an owned copy of the not-yet-decoded value that was received from the database. Read more

impl Debug for Mssql[src]

impl<'_> Decode<'_, Mssql> for i8[src]

impl<'_> Decode<'_, Mssql> for f32[src]

impl<'_> Decode<'_, Mssql> for i32[src]

impl<'_> Decode<'_, Mssql> for i16[src]

impl<'_> Decode<'_, Mssql> for i64[src]

impl<'_> Decode<'_, Mssql> for f64[src]

impl<'_> Decode<'_, Mssql> for String[src]

impl<'_> Decode<'_, Mssql> for bool[src]

impl<'_> Encode<'_, Mssql> for i64[src]

impl<'_> Encode<'_, Mssql> for f64[src]

impl<'_> Encode<'_, Mssql> for i32[src]

impl<'_> Encode<'_, Mssql> for i8[src]

impl<'_> Encode<'_, Mssql> for f32[src]

impl<'_, '_> Encode<'_, Mssql> for &'_ str[src]

impl<'_> Encode<'_, Mssql> for bool[src]

impl<'_> Encode<'_, Mssql> for String[src]

impl<'_> Encode<'_, Mssql> for i16[src]

impl<'q, T> Encode<'q, Mssql> for Option<T> where
    T: 'q + Encode<'q, Mssql>, 
[src]

impl<'_> HasArguments<'_> for Mssql[src]

type Database = Mssql

type Arguments = MssqlArguments

The concrete Arguments implementation for this database.

type ArgumentBuffer = Vec<u8>

The concrete type used as a buffer for arguments while encoding.

impl<'q> HasStatement<'q> for Mssql[src]

type Database = Mssql

type Statement = MssqlStatement<'q>

The concrete Statement implementation for this database.

impl<'r> HasValueRef<'r> for Mssql[src]

type Database = Mssql

type ValueRef = MssqlValueRef<'r>

The concrete type used to hold a reference to the not-yet-decoded value that has just been received from the database. Read more

impl<O, F> MapRow<Mssql> for F where
    F: FnMut(MssqlRow) -> O,
    O: Unpin
[src]

type Output = O

impl<O, F> TryMapRow<Mssql> for F where
    F: FnMut(MssqlRow) -> Result<O, Error>,
    O: Unpin
[src]

type Output = O

impl Type<Mssql> for f32[src]

impl Type<Mssql> for bool[src]

impl Type<Mssql> for i64[src]

impl Type<Mssql> for i8[src]

impl Type<Mssql> for i16[src]

impl Type<Mssql> for str[src]

impl Type<Mssql> for f64[src]

impl Type<Mssql> for String[src]

impl Type<Mssql> for i32[src]

Auto Trait Implementations

impl RefUnwindSafe for Mssql

impl Send for Mssql

impl Sync for Mssql

impl Unpin for Mssql

impl UnwindSafe for Mssql

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,