pub struct SQLiteDriver {}Expand description
SQLite driver.
Implementations§
Source§impl SQLiteDriver
impl SQLiteDriver
Trait Implementations§
Source§impl Clone for SQLiteDriver
impl Clone for SQLiteDriver
Source§fn clone(&self) -> SQLiteDriver
fn clone(&self) -> SQLiteDriver
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for SQLiteDriver
impl Debug for SQLiteDriver
Source§impl Default for SQLiteDriver
impl Default for SQLiteDriver
Source§fn default() -> SQLiteDriver
fn default() -> SQLiteDriver
Returns the “default value” for a type. Read more
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 implementation.
Source§type Transaction<'c> = SQLiteTransaction<'c>
type Transaction<'c> = SQLiteTransaction<'c>
Transaction implementation.
Source§fn sql_writer(&self) -> SQLiteSqlWriter
fn sql_writer(&self) -> SQLiteSqlWriter
Returns a dialect-specific SQL writer for query construction.
Source§fn connect_pool(
&self,
url: Cow<'static, str>,
config: PoolConfig,
) -> impl Future<Output = Result<impl ConnectionPool<Self>, Error>> + Send
fn connect_pool( &self, url: Cow<'static, str>, config: PoolConfig, ) -> impl Future<Output = Result<impl ConnectionPool<Self>, Error>> + Send
Creates a new connection to the database at the specified URL.
Auto Trait Implementations§
impl Freeze for SQLiteDriver
impl RefUnwindSafe for SQLiteDriver
impl Send for SQLiteDriver
impl Sync for SQLiteDriver
impl Unpin for SQLiteDriver
impl UnsafeUnpin 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