Struct sqlx::Mssql[][src]

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 QueryResult = MssqlQueryResult

The concrete QueryResult 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 String[src]

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

impl<'_> Encode<'_, Mssql> for i8[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, Global>

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 Type<Mssql> for str[src]

impl Type<Mssql> for bool[src]

impl Type<Mssql> for String[src]

impl Type<Mssql> for f32[src]

impl Type<Mssql> for i32[src]

impl Type<Mssql> for i16[src]

impl Type<Mssql> for i64[src]

impl Type<Mssql> for i8[src]

impl Type<Mssql> for f64[src]

Auto Trait Implementations

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> Conv for T

impl<T> Conv for T

impl<T> FmtForward for T

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

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

impl<T> Pipe for T where
    T: ?Sized

impl<T> Pipe for T

impl<T> PipeAsRef for T

impl<T> PipeBorrow for T

impl<T> PipeDeref for T

impl<T> PipeRef for T

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> Tap for T

impl<T> Tap for T

impl<T, U> TapAsRef<U> for T where
    U: ?Sized

impl<T, U> TapBorrow<U> for T where
    U: ?Sized

impl<T> TapDeref for T

impl<T> TryConv for T

impl<T> TryConv for T

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>,