bitstream-rs 0.2.0

Crate for reading and writing single bit values from ordinary Readers and Writers
Documentation
  • Coverage
  • 100%
    18 out of 18 items documented3 out of 16 items with examples
  • Size
  • Source code size: 18.26 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 1.76 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Links
  • WanzenBug/bitstream
    1 1 1
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • WanzenBug

bitstream-rs

Rust crate for reading and writing single bit values from ordinary Readers and Writers

Usage

Add this library to your dependencies in your Cargo.toml

[dependencies]
bitstream-rs = "0.2.0"

Then import it in your source code

extern crate bitstream;

You can now use the BitReader and BitWriter

let mut writer = BitWriter::new(outfile);
let mut reader = BitReader::new(infile);

For more information, take a look at the docs