pub struct MySql;Expand description
MySQL / MariaDB renderer.
Trait Implementations§
Source§impl Dialect for MySql
impl Dialect for MySql
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 MySql
impl RefUnwindSafe for MySql
impl Send for MySql
impl Sync for MySql
impl Unpin for MySql
impl UnsafeUnpin for MySql
impl UnwindSafe for MySql
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