9个版本

0.3.3 2020年10月10日
0.3.2 2020年10月3日
0.3.1 2020年5月26日
0.2.0 2020年4月4日
0.1.4 2020年1月30日

#282 in #orm

每月 34 次下载
orma中使用

MIT许可证

10KB
181

orma-derive

此crate提供了Orma的派生宏。


lib.rs:

此crate为orma提供派生宏。

示例

 use orma::*;
 use serde::{Serialize, Deserialize};

 #[orma_derive::orma_obj(table = "table_name")]
 #[derive(Serialize, Deserialize)]
 struct TestData {
     field_1: String,
     field_2: String,
     some_other_filed: String,
 }

依赖项

~1.5MB
~34K SLoC