1 个不稳定版本
0.1.9 |
|
---|---|
0.1.8 | 2022年5月25日 |
0.1.6 |
|
#129 in #derive-debug
在 struct2vec 中使用
9KB
112 行
ToVec
Rust结构到切片。
示例一
use struct2vec::ToVec;
use struct2vec_derive::ToVec;
use std::collections::HashMap;
#[derive(ToVec, Debug, Clone, Deserialize, Serialize)]
struct Custom {
#[to_vec(comment = "用户名", field_type = "字段类型")]
name: String,
}
let custom = Custom{name:String::from("123")};
custom.to_vec()
示例二
use struct2vec::ToVec;
use struct2vec_derive::ToVec;
use std::collections::HashMap;
use from_value_derive::From;
#[derive(ToVec, Debug, Clone, Deserialize, Serialize)]
struct Custom {
#[to_vec(comment = "用户名", field_type = "字段类型")]
name: String,
data: Data
}
#[derive(From, Debug, Clone, Deserialize, Serialize)]
struct Data {
key: String
}
let custom = Custom{name:String::from("123")};
custom.to_vec()
依赖
~1.7–2.4MB
~54K SLoC