pub struct Sqlite;Expand description
SQLite 3 renderer.
Trait Implementations§
Source§impl Dialect for Sqlite
impl Dialect for Sqlite
Source§fn quote_ident(&self, ident: &str) -> String
fn quote_ident(&self, ident: &str) -> String
Quote an identifier (column / table name).
Source§fn render_action(&self, action: ReferentialAction) -> &'static str
fn render_action(&self, action: ReferentialAction) -> &'static str
Render a referential action verbatim.
Source§fn terminator(&self) -> &'static str
fn terminator(&self) -> &'static str
Statement terminator (almost always
;).Auto Trait Implementations§
impl Freeze for Sqlite
impl RefUnwindSafe for Sqlite
impl Send for Sqlite
impl Sync for Sqlite
impl Unpin for Sqlite
impl UnsafeUnpin for Sqlite
impl UnwindSafe for Sqlite
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