2 releases
Uses new Rust 2024
| 0.1.1 | Jul 1, 2025 |
|---|---|
| 0.1.0 | Jul 1, 2025 |
#2 in #le
8KB
160 lines
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 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.
...