Expand description

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]);

Re-exports

pub use byteorder;

Traits

Write a value into a Write.

Read a value from a Read.