3个版本

0.1.2 2022年2月13日
0.1.1 2020年10月26日
0.1.0 2019年4月16日

#11 in #unstructured

每月 25 次下载
用于 blynk_io

MIT 许可证

59KB
820 代码行

Build Status Build status Crates.io Version Docs

restruct 用于解释存储在文件或其他来源中的二进制数据,或转换C结构和Rust类型,当使用解析器生成器时被认为是不成比例的。它是 Python 的 struct-module 的灵感来源。

该库使用格式字符串作为二进制数据和预期转换到/从 Rust 类型的紧凑描述。格式字符串在编译时被解释,以生成一个类型,其函数可用于在非结构化和结构化数据之间进行转换。

// Generate a parser in little-endian for two 32bit integers, a float and a bool.
#[derive(restruct_derive::Struct)]
#[fmt="<2if?"]
struct FooParser;

// Pack a tuple of two integers, a float and a bool into a [u8; _]-buffer.
let packed = FooParser::pack((1, 2, 3.0, false));
assert_eq!(packed, [1, 0, 0, 0, 2, 0, 0, 0, 0, 0, 64, 64, 0]);
assert_eq!(packed.len(), FooParser::SIZE);

// Packing and unpacking can't fail at runtime.
let unpacked = FooParser::unpack(packed);
assert_eq!(unpacked, (1, 2, 3.0, false));

// Any `io::Read` can be used directly.
let unpacked = FooParser::read_from(&mut &packed[..]).expect("i/o failed");
assert_eq!(unpacked, (1, 2, 3.0, false));

// Any `io::Write` can be used directly.
let mut buffer = Vec::with_capacity(FooParser::SIZE);
FooParser::write_to((1, 2, 3.0, false), &mut buffer).expect("i/o failed");
assert_eq!(&buffer, &packed);
// Because packing and unpacking is const we can use these functions to initialize other consts
const TEAPOT: <Tea as restruct::Struct>::Unpacked = Tea::unpack(*include_bytes!("teapot.bin"));
const TEAPOT_TEMPERATURE: i32 = TEAPOT.0;
const TEAPOT_FILL_STATUS: f32 = TEAPOT.2;
const TEAPOT_ACTIVE: bool = TEAPOT.3;

依赖项

~2–13MB
~161K SLoC