pub struct MysqlDialect;Trait Implementations§
Source§impl Clone for MysqlDialect
impl Clone for MysqlDialect
Source§fn clone(&self) -> MysqlDialect
fn clone(&self) -> MysqlDialect
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 MysqlDialect
Source§impl Debug for MysqlDialect
impl Debug for MysqlDialect
Source§impl Default for MysqlDialect
impl Default for MysqlDialect
Source§fn default() -> MysqlDialect
fn default() -> MysqlDialect
Returns the “default value” for a type. Read more
Source§impl Dialect for MysqlDialect
impl Dialect for MysqlDialect
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 MysqlDialect
impl RefUnwindSafe for MysqlDialect
impl Send for MysqlDialect
impl Sync for MysqlDialect
impl Unpin for MysqlDialect
impl UnsafeUnpin for MysqlDialect
impl UnwindSafe for MysqlDialect
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