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
#![feature(trait_alias)]
pub mod asyncdao;
pub mod asyncdatabase;
#[cfg(feature = "redis_async")]
pub mod cache;
mod common;
mod serde;

pub mod dao;
pub mod database;
pub mod entity;
mod sql_builder;
pub use sql_builder::SqlExecutor;