Byte reading and writing library for Rust.
[](https://crates.io/crates/byyte)
[](https://docs.rs/byyte)
```rust
// Import the `ByteReader` trait from the `le` module for reading bytes with Little Endian.
use byyte::le::ByteReader;
...
let mut cursor = std::io::Cursor::new(data);
cursor.read_u32()?; // Reads a single u32 from the cursor in Little Endian format.
...
```