Crate toasty_driver_mysql

Crate toasty_driver_mysql 

Source
Expand description

Toasty driver for MySQL using mysql_async.

§Examples

use toasty_driver_mysql::MySQL;

let driver = MySQL::new("mysql://localhost/mydb").unwrap();

Structs§

Connection
An open connection to a MySQL database.
MySQL
A MySQL [Driver] that connects via mysql_async.