9个版本
0.2.0 | 2023年4月24日 |
---|---|
0.1.7 | 2023年2月22日 |
0.1.4 | 2023年1月24日 |
#2260在编码
1,539次每月下载
21KB
588 行
将序列化格式作为泛型的字节数组容器
let json = serde_json::json!([1, 2, 3, 4]);
let bytes: Bytes<Plain> = serde_json::from_value(json).unwrap();
assert_eq!(&bytes, &[1, 2, 3, 4]);
let bytes: Bytes<HexString> = bytes.convert();
let hex_string = serde_json::to_string(&bytes).unwrap();
assert_eq!(hex_string, "\"01020304\"");
依赖关系
~0.8–2MB
~43K SLoC