A binary data reader and writer that is similar to Python's struct module, but makes use of Rust's typing system.
```rust 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])>::unpackfrombe(&mut cursor).unwrap();
asserteq!(a, 1); asserteq!(b, 2); assert_eq!(cd, [3, 4]); ```