byyte 0.1.1

A library for reading and writing binary data, focusing on simplicity.
Documentation
  • Coverage
  • 0%
    0 out of 41 items documented0 out of 38 items with examples
  • Size
  • Source code size: 6.79 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 1.56 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Links
  • techwritescode/mobi-rs
    0 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • techwritescode

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