[][src]Struct sqlx::Sqlite

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

Sqlite database driver.

Trait Implementations

impl Database for Sqlite[src]

type Connection = SqliteConnection

The concrete Connection implementation for this database.

type Arguments = SqliteArguments

The concrete Arguments implementation for this database.

type TypeInfo = SqliteTypeInfo

The concrete TypeInfo implementation for this database.

type TableId = String

The Rust type of table identifiers for this database.

type RawBuffer = Vec<SqliteArgumentValue>

The Rust type used as the buffer when encoding arguments. Read more

type Error = SqliteError

The concrete DatabaseError type used to report errors from the database.

impl Debug for Sqlite[src]

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

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

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

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

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

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

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

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

impl<'de, T> Decode<'de, Sqlite> for Option<T> where
    T: Decode<'de, Sqlite>, 
[src]

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

impl Encode<Sqlite> for i64[src]

impl Encode<Sqlite> for String[src]

impl Encode<Sqlite> for f32[src]

impl Encode<Sqlite> for str[src]

impl Encode<Sqlite> for Vec<u8>[src]

impl Encode<Sqlite> for i32[src]

impl Encode<Sqlite> for bool[src]

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

impl Encode<Sqlite> for f64[src]

impl<'c, 'q> HasCursor<'c, 'q> for Sqlite[src]

type Database = Sqlite

type Cursor = SqliteCursor<'c, 'q>

The concrete Cursor implementation for this database.

impl<'c> HasRawValue<'c> for Sqlite[src]

type Database = Sqlite

type RawValue = SqliteValue<'c>

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

impl<'c> HasRow<'c> for Sqlite[src]

type Database = Sqlite

type Row = SqliteRow<'c>

The concrete Row implementation for this database.

impl<O, F> MapRow<Sqlite> for F where
    F: for<'c> FnMut(SqliteRow<'c>) -> O,
    O: Unpin
[src]

type Output = O

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

type Output = O

impl Type<Sqlite> for bool[src]

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

impl Type<Sqlite> for f64[src]

impl Type<Sqlite> for f32[src]

impl Type<Sqlite> for String[src]

impl Type<Sqlite> for i64[src]

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

impl Type<Sqlite> for i32[src]

impl Type<Sqlite> for str[src]

Auto Trait Implementations

impl RefUnwindSafe for Sqlite

impl Send for Sqlite

impl Sync for Sqlite

impl Unpin for Sqlite

impl UnwindSafe for Sqlite

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> Sealed<T> for T where
    T: ?Sized

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