parsql_deadpool_postgres/
lib.rs1pub mod traits;
3pub mod macros;
4
5pub mod transactional_ops;
7
8pub use macros::*;
10
11pub use transactional_ops as transactional;
13
14mod crud_ops;
16
17pub mod pool_extensions;
19pub mod transaction_extensions;
20
21pub use crud_ops::{
23 insert,
24 update,
25 delete,
26 fetch,
27 fetch_all,
28 get,
29 get_all,
30 select,
31 select_all
32};
33
34pub use deadpool_postgres::{Pool, Client as PoolClient, PoolError, Transaction};
36
37pub use tokio_postgres::{Error, Row};
39pub use tokio_postgres::types::ToSql;