Current Crates.io Version docs-rs

bitconv

A simple, zero-dependency, no_std compatible Rust equivalent to the C# BitConverter class.

To add to your Cargo.toml: toml bitconv = "0.1.3"

Example

```rust use bitconv::{endian::{Big, Little, Native}, to_uint32};

fn main() { let buffer = [15, 0, 0, 0, 0, 16, 0, 255, 3, 0, 0, 202, 19]; asserteq!(261888, touint32::(&buffer, 6)); asserteq!(261888, touint32::(&buffer, 6)); asserteq!(16712448, touint32::(&buffer, 6)); } ```