pub struct SQLiteDriver {}Implementations§
Source§impl SQLiteDriver
impl SQLiteDriver
Trait Implementations§
Source§impl Driver for SQLiteDriver
impl Driver for SQLiteDriver
Source§type Connection = SQLiteConnection
type Connection = SQLiteConnection
Concrete connection type.
Source§type Prepared = SQLitePrepared
type Prepared = SQLitePrepared
Prepared statement wrapper binding values.
Source§type Transaction<'c> = SQLiteTransaction<'c>
type Transaction<'c> = SQLiteTransaction<'c>
Concrete transaction type, parameterized by connection borrow lifetime.
Source§fn sql_writer(&self) -> SQLiteSqlWriter
fn sql_writer(&self) -> SQLiteSqlWriter
Obtain a SQL writer object (cheap to construct).
Auto Trait Implementations§
impl Freeze for SQLiteDriver
impl RefUnwindSafe for SQLiteDriver
impl Send for SQLiteDriver
impl Sync for SQLiteDriver
impl Unpin for SQLiteDriver
impl UnwindSafe for SQLiteDriver
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more