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
12
13
#[cfg(feature = "mysql_async")]
mod entity_mysql;
#[cfg(feature = "postgresql_async")]
mod entity_postgres;
#[cfg(feature = "mysql_async")]
mod mysql_types;
#[cfg(feature = "postgresql_async")]
mod postgres_types;

#[cfg(feature = "sqlite_async")]
mod entity_sqlite;
#[cfg(feature = "sqlite_async")]
mod sqlite_types;