byyte

Crates.iobyyte
lib.rsbyyte
version0.1.1
created_at2025-07-01 14:44:17.408376+00
updated_at2025-07-01 23:58:56.604351+00
descriptionA library for reading and writing binary data, focusing on simplicity.
homepage
repositoryhttps://github.com/techwritescode/mobi-rs
max_upload_size
id1733283
size7,261
tech (techwritescode)

documentation

README

byyte

Byte reading and writing library for Rust.

Crates.io Docs.rs

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.
...

Commit count: 0

cargo fmt