7个版本
使用旧Rust 2015
0.0.7 | 2015年6月30日 |
---|---|
0.0.6 | 2015年6月19日 |
0.0.4 | 2015年4月3日 |
0.0.3 | 2015年2月28日 |
#73 in #endian
6KB
107 行
Bincode(二进制编码器/解码器)扩展
示例
extern crate bincode;
extern crate bincode_ext;
use bincode_ext::byte_order::Le;
#[derive(RustcEncodable, RustcDecodable, PartialEq)]
struct Foo {
x: Le<u32>, // little endian
y: u32, // big endian, due to defaults in bincode
}
依赖项
~225KB