pub struct MySQLDriver;Expand description
MySQL/MariaDB driver.
Implementations§
Source§impl MySQLDriver
impl MySQLDriver
Trait Implementations§
Source§impl Clone for MySQLDriver
impl Clone for MySQLDriver
Source§fn clone(&self) -> MySQLDriver
fn clone(&self) -> MySQLDriver
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 MySQLDriver
impl Debug for MySQLDriver
Source§impl Default for MySQLDriver
impl Default for MySQLDriver
Source§fn default() -> MySQLDriver
fn default() -> MySQLDriver
Returns the “default value” for a type. Read more
Source§impl Driver for MySQLDriver
impl Driver for MySQLDriver
Source§type Connection = MySQLConnection
type Connection = MySQLConnection
Concrete connection type.
Source§type SqlWriter = MySQLSqlWriter
type SqlWriter = MySQLSqlWriter
Dialect-specific SQL writer.
Source§type Prepared = MySQLPrepared
type Prepared = MySQLPrepared
Prepared statement implementation.
Source§type Transaction<'c> = MySQLTransaction<'c>
type Transaction<'c> = MySQLTransaction<'c>
Transaction implementation.
Source§fn sql_writer(&self) -> Self::SqlWriter
fn sql_writer(&self) -> Self::SqlWriter
Get a SQL writer object.
impl Copy for MySQLDriver
Auto Trait Implementations§
impl Freeze for MySQLDriver
impl RefUnwindSafe for MySQLDriver
impl Send for MySQLDriver
impl Sync for MySQLDriver
impl Unpin for MySQLDriver
impl UnsafeUnpin for MySQLDriver
impl UnwindSafe for MySQLDriver
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