#binary-data #binary #pack #struct #unpack #reader-writer

byteorder-pack

A binary data reader and writer that is similar to Python's struct module

1 unstable release

0.1.0 Apr 24, 2022

#2085 in Encoding

47 downloads per month
Used in 2 crates

MIT license

13KB
204 lines

byteorder-pack

A binary data reader and writer that is similar to Python's struct module, but makes use of Rust's typing system.

Example

use std::io::Cursor;
use byteorder_pack::UnpackFrom;

let mut cursor = Cursor::new(vec![0x01, 0x02, 0x00, 0x03, 0x00, 0x04]);

let (a, b, cd) = <(u8, u8, [u16; 2])>::unpack_from_be(&mut cursor).unwrap();

assert_eq!(a, 1);
assert_eq!(b, 2);
assert_eq!(cd, [3, 4]);

lib.rs:

byteorder-pack

A binary data reader and writer that is similar to Python's struct module, but makes use of Rust's typing system.

Example

use std::io::Cursor;
use byteorder_pack::UnpackFrom;

let mut cursor = Cursor::new(vec![0x01, 0x02, 0x00, 0x03, 0x00, 0x04]);

let (a, b, cd) = <(u8, u8, [u16; 2])>::unpack_from_be(&mut cursor).unwrap();

assert_eq!(a, 1);
assert_eq!(b, 2);
assert_eq!(cd, [3, 4]);

Dependencies

~120KB