pub struct SqliteDialect;Trait Implementations§
Source§impl Clone for SqliteDialect
impl Clone for SqliteDialect
Source§fn clone(&self) -> SqliteDialect
fn clone(&self) -> SqliteDialect
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 moreimpl Copy for SqliteDialect
Source§impl Debug for SqliteDialect
impl Debug for SqliteDialect
Source§impl Default for SqliteDialect
impl Default for SqliteDialect
Source§fn default() -> SqliteDialect
fn default() -> SqliteDialect
Returns the “default value” for a type. Read more
Source§impl Dialect for SqliteDialect
impl Dialect for SqliteDialect
fn name(&self) -> &'static str
fn identifier_quote(&self) -> char
fn placeholder(&self, _index: usize) -> String
fn supports_returning(&self) -> bool
fn supports_on_conflict(&self) -> bool
Source§fn supports_update_from(&self) -> bool
fn supports_update_from(&self) -> bool
Whether the dialect accepts
UPDATE ... FROM ....Source§fn supports_select_row_locking(&self) -> bool
fn supports_select_row_locking(&self) -> bool
Whether the dialect accepts the typed SELECT row-locking clause.
Source§fn supports_table_locking(&self) -> bool
fn supports_table_locking(&self) -> bool
Whether the dialect accepts PostgreSQL-style typed table locks.
Auto Trait Implementations§
impl Freeze for SqliteDialect
impl RefUnwindSafe for SqliteDialect
impl Send for SqliteDialect
impl Sync for SqliteDialect
impl Unpin for SqliteDialect
impl UnsafeUnpin for SqliteDialect
impl UnwindSafe for SqliteDialect
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