Crates.io | struct2vec |
lib.rs | struct2vec |
version | 0.1.4 |
source | src |
created_at | 2021-08-21 15:36:46.123622 |
updated_at | 2022-05-25 13:29:05.495736 |
description | Rust structure to slice. |
homepage | https://github.com/ptechen |
repository | https://github.com/ptechen/ToVec.git |
max_upload_size | |
id | 440353 |
size | 2,755 |
Rust structure to slice.
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()