A Rust crate for helping parse structs from binary data using ✨macro magic✨
BinRead uses a derive macro for declaratively defining binary parsing methods for structs.
```rust
struct Dog { bonepilecount: u8,
#[br(big, count = bone_pile_count)]
bone_piles: Vec<u16>,
#[br(align_before = 0xA)]
name: NullString
}
let mut reader = Cursor::new(b"DOG\x02\x00\x01\x00\x12\0\0Rudy\0"); let dog: Dog = reader.readne().unwrap(); asserteq!(dog.bonepiles, &[0x1, 0x12]); asserteq!(dog.name.into_string(), "Rudy") ```