1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
use crate::Database;

/// **MySQL** database driver.
pub struct MySql;

impl Database for MySql {
    type Connection = super::MySqlConnection;

    type Arguments = super::MySqlArguments;

    type Row = super::MySqlRow;
}

impl_into_arguments_for_database!(MySql);