1 个不稳定版本
0.5.0 | 2020年3月20日 |
---|
#10 in #named-fields
69,381 每月下载量
在 174 个crate中使用 (通过 serde_tuple)
8KB
159 行
serde_tuple
将具有命名字段的结构体序列化和反序列化为值数组。
参见: https://github.com/dtolnay/request-for-implementation/issues/3
使用方法
use serde_tuple::*;
#[derive(Serialize_tuple, Deserialize_tuple)]
pub struct Foo<'a> {
bar: &'a str,
baz: i32
}
let foo = Foo { bar: "Yes", baz: 22 };
let json = serde_json::to_string(&foo).unwrap();
println!("{}", &json);
// # => ["Yes",22]
许可证: MIT
依赖关系
~1.5MB
~35K SLoC