pub struct SqliteDialect;Expand description
SQLite dialect.
Implementations§
Source§impl SqliteDialect
impl 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 · 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 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
Source§fn identifier_quote(&self) -> char
fn identifier_quote(&self) -> char
Returns the identifier quote character (e.g.,
" for standard SQL, ` for MySQL).Source§fn supports_returning(&self) -> bool
fn supports_returning(&self) -> bool
Returns whether the dialect supports RETURNING clause.
Source§fn supports_upsert(&self) -> bool
fn supports_upsert(&self) -> bool
Returns whether the dialect supports UPSERT (ON CONFLICT).
§fn string_escape(&self) -> &'static str
fn string_escape(&self) -> &'static str
Returns the string escape character.
§fn parameter_placeholder(&self) -> &'static str
fn parameter_placeholder(&self) -> &'static str
Returns the parameter placeholder style.
§fn supports_limit_offset(&self) -> bool
fn supports_limit_offset(&self) -> bool
Returns whether the dialect supports LIMIT with OFFSET.
§fn quote_identifier(&self, name: &str) -> String
fn quote_identifier(&self, name: &str) -> String
Quotes an identifier if necessary.
impl Copy for SqliteDialect
Auto Trait Implementations§
impl Freeze for SqliteDialect
impl RefUnwindSafe for SqliteDialect
impl Send for SqliteDialect
impl Sync for SqliteDialect
impl Unpin 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