1 个不稳定版本
使用旧的 Rust 2015
0.8.1 | 2019年9月1日 |
---|---|
0.8.0 |
|
0.7.0 |
|
#34 in #msgpack
261 次每月下载
在 19 个crate中(9个直接使用)中使用
110KB
2K SLoC
RMP - 针对旧版 rustc-serialize 的 MessagePack
此crate已被废弃。请使用 rmp-serde 代替。
lib.rs
:
示例
让我们尝试编码一个包含整数和字符串的元组。
extern crate rmp_serialize;
extern crate rustc_serialize;
use rustc_serialize::Encodable;
use rmp_serialize::Encoder;
fn main() {
let val = (42u8, "the Answer");
// The encoder borrows the bytearray buffer.
let mut buf = [0u8; 13];
val.encode(&mut Encoder::new(&mut &mut buf[..]));
assert_eq!([0x92, 0x2a, 0xaa, 0x74, 0x68, 0x65, 0x20, 0x41, 0x6e, 0x73, 0x77, 0x65, 0x72], buf);
}
现在我们有一个编码后的缓冲区,我们可以用同样的方式解码
extern crate rmp_serialize;
extern crate rustc_serialize;
use rustc_serialize::Decodable;
use rmp_serialize::Decoder;
fn main() {
let buf = [0x92, 0x2a, 0xaa, 0x74, 0x68, 0x65, 0x20, 0x41, 0x6e, 0x73, 0x77, 0x65, 0x72];
let mut decoder = Decoder::new(&buf[..]);
let res: (u8, String) = Decodable::decode(&mut decoder).unwrap();
assert_eq!((42u8, "the Answer".to_string()), res);
}
RMP 还允许通过 rustc_serialize 反射自动序列化和反序列化自定义结构。要启用此功能,请像以下示例中所示,派生 RustcEncodable 和 RustcDecodable 属性
extern crate rmp_serialize;
extern crate rustc_serialize;
use rustc_serialize::{Encodable, Decodable};
use rmp_serialize::{Encoder, Decoder};
#[derive(RustcEncodable, RustcDecodable, PartialEq, Debug)]
struct Custom {
id: u32,
key: String,
}
fn main() {
let val = Custom { id: 42u32, key: "the Answer".to_string() };
let mut buf = [0u8; 13];
val.encode(&mut Encoder::new(&mut &mut buf[..]));
assert_eq!([0x92, 0x2a, 0xaa, 0x74, 0x68, 0x65, 0x20, 0x41, 0x6e, 0x73, 0x77, 0x65, 0x72], buf);
// Now try to unpack the buffer into the initial struct.
let mut decoder = Decoder::new(&buf[..]);
let res: Custom = Decodable::decode(&mut decoder).ok().unwrap();
assert_eq!(val, res);
}
依赖项
~500KB