bootrust 0.1.0

An elegant macroless data access layer abstraction, simple and easy-use object-relational mapping powered by the Serde serialization framework. 一个优雅的无宏的数据访问层抽象, 由serde序列化框架提供支持的简单易用的对象关系映射
Documentation
1
2
3
4
5
6
7
8
9
10
11
mod entity_crud;
#[cfg(feature = "mysql")]
mod mysql;
#[cfg(feature = "postgresql")]
mod postgresql;
#[cfg(feature = "postgresql_async")]
pub mod postgresql_async;
#[cfg(feature = "sqlite")]
mod sqlite;
#[cfg(feature = "sqlite_async")]
pub mod sqlite_async;