Crate toasty_driver_postgresql

Crate toasty_driver_postgresql 

Source
Expand description

Toasty driver for PostgreSQL using tokio-postgres.

§Examples

use toasty_driver_postgresql::PostgreSQL;

let driver = PostgreSQL::new("postgresql://localhost/mydb").unwrap();

Structs§

Connection
An open connection to a PostgreSQL database.
PostgreSQL
A PostgreSQL [Driver] that connects via tokio-postgres.