byyte
Byte reading and writing library for Rust.
Example Usage
// Import the `ByteReader` trait from the `le` module for reading bytes with Little Endian.
use ByteReader;
...
let mut cursor = new;
cursor.read_u32?; // Reads a single u32 from the cursor in Little Endian format.
...