rbdc-pg 4.6.3

The Rust SQL Toolkit and ORM Library. An async, pure Rust SQL crate featuring compile-time Dynamic SQL
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
RBDC

* an database driver abstract

* support zero copy serde-ser/de

Database -> bytes ->rbs::Value-> Struct(User Define)
Struct(User Define) -> rbs::ValueRef -> ref clone() -> Database


### how to define my driver?

should impl trait and load driver
* impl trait rbdc::db::{Driver, MetaData, Row, Connection, ConnectOptions, Placeholder};