[][src]Struct sqlx::Sqlite

pub struct Sqlite;
This is supported on crate feature sqlite only.

Sqlite database driver.

Trait Implementations

impl Database for Sqlite[src]

type Connection = SqliteConnection

The concrete Connection implementation for this database.

type TransactionManager = SqliteTransactionManager

The concrete TransactionManager implementation for this database.

type Row = SqliteRow

The concrete Row implementation for this database.

type Done = SqliteDone

The concrete Done implementation for this database.

type Column = SqliteColumn

The concrete Column implementation for this database.

type TypeInfo = SqliteTypeInfo

The concrete TypeInfo implementation for this database.

type Value = SqliteValue

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 Sqlite[src]

impl<'_> Decode<'_, Sqlite> for Uuid[src]

impl<'_> Decode<'_, Sqlite> for Hyphenated[src]

impl<'r> Decode<'r, Sqlite> for NaiveDate[src]

impl<'r, T> Decode<'r, Sqlite> for Json<T> where
    T: 'r + Deserialize<'r>, 
[src]

impl<'r> Decode<'r, Sqlite> for i16[src]

impl<'r> Decode<'r, Sqlite> for i64[src]

impl<'r> Decode<'r, Sqlite> for NaiveTime[src]

impl<'r> Decode<'r, Sqlite> for DateTime<Local>[src]

impl<'r> Decode<'r, Sqlite> for &'r [u8][src]

impl<'r> Decode<'r, Sqlite> for i8[src]

impl<'r> Decode<'r, Sqlite> for &'r str[src]

impl<'r> Decode<'r, Sqlite> for String[src]

impl<'r> Decode<'r, Sqlite> for f64[src]

impl<'r> Decode<'r, Sqlite> for Vec<u8, Global>[src]

impl<'r> Decode<'r, Sqlite> for bool[src]

impl<'r> Decode<'r, Sqlite> for i32[src]

impl<'r> Decode<'r, Sqlite> for DateTime<FixedOffset>[src]

impl<'r> Decode<'r, Sqlite> for NaiveDateTime[src]

impl<'r> Decode<'r, Sqlite> for DateTime<Utc>[src]

impl<'r> Decode<'r, Sqlite> for f32[src]

impl<'_, T> Encode<'_, Sqlite> for Json<T> where
    T: Serialize
[src]

impl<'_, Tz> Encode<'_, Sqlite> for DateTime<Tz> where
    Tz: TimeZone,
    <Tz as TimeZone>::Offset: Display
[src]

impl<'_> Encode<'_, Sqlite> for NaiveTime[src]

impl<'_> Encode<'_, Sqlite> for NaiveDate[src]

impl<'_> Encode<'_, Sqlite> for NaiveDateTime[src]

impl<'q> Encode<'q, Sqlite> for f32[src]

impl<'q> Encode<'q, Sqlite> for Uuid[src]

impl<'q> Encode<'q, Sqlite> for &'q [u8][src]

impl<'q> Encode<'q, Sqlite> for bool[src]

impl<'q> Encode<'q, Sqlite> for f64[src]

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

impl<'q> Encode<'q, Sqlite> for Hyphenated[src]

impl<'q> Encode<'q, Sqlite> for i32[src]

impl<'q> Encode<'q, Sqlite> for &'q str[src]

impl<'q> Encode<'q, Sqlite> for Vec<u8, Global>[src]

impl<'q> Encode<'q, Sqlite> for i64[src]

impl<'q> Encode<'q, Sqlite> for i16[src]

impl<'q> Encode<'q, Sqlite> for String[src]

impl<'q> Encode<'q, Sqlite> for i8[src]

impl<'q> HasArguments<'q> for Sqlite[src]

type Database = Sqlite

type Arguments = SqliteArguments<'q>

The concrete Arguments implementation for this database.

type ArgumentBuffer = Vec<SqliteArgumentValue<'q>, Global>

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

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

type Database = Sqlite

type Statement = SqliteStatement<'q>

The concrete Statement implementation for this database.

impl HasStatementCache for Sqlite[src]

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

type Database = Sqlite

type ValueRef = SqliteValueRef<'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<Sqlite> for F where
    F: Send + FnMut(SqliteRow) -> O,
    O: Unpin
[src]

type Output = O

impl MigrateDatabase for Sqlite[src]

impl<O, F> TryMapRow<Sqlite> for F where
    F: Send + FnMut(SqliteRow) -> Result<O, Error>,
    O: Unpin
[src]

type Output = O

impl Type<Sqlite> for NaiveDateTime[src]

impl<T> Type<Sqlite> for Json<T>[src]

impl Type<Sqlite> for NaiveTime[src]

impl Type<Sqlite> for Vec<u8, Global>[src]

impl Type<Sqlite> for [u8][src]

impl<Tz> Type<Sqlite> for DateTime<Tz> where
    Tz: TimeZone
[src]

impl Type<Sqlite> for bool[src]

impl Type<Sqlite> for NaiveDate[src]

impl Type<Sqlite> for str[src]

impl Type<Sqlite> for String[src]

impl Type<Sqlite> for i64[src]

impl Type<Sqlite> for i16[src]

impl Type<Sqlite> for f32[src]

impl Type<Sqlite> for f64[src]

impl Type<Sqlite> for i32[src]

impl Type<Sqlite> for i8[src]

impl Type<Sqlite> for Uuid[src]

impl Type<Sqlite> for Hyphenated[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>,