• Home
Name Date Size #Lines LOC

..--

benches/04-Jul-2025-234193

src/04-Jul-2025-826532

.android-checksum.jsonD04-Jul-20251.2 KiB11

.cargo-checksum.jsonD04-Jul-2025742 11

Android.bpD04-Jul-20251.1 KiB4338

Cargo.tomlD04-Jul-20251.1 KiB3731

Changelog.mdD04-Jul-20251.4 KiB3828

LICENSED04-Jul-202511.1 KiB202169

LICENSE-APACHED04-Jul-202511.1 KiB202169

METADATAD04-Jul-2025456 1817

MODULE_LICENSE_APACHE2D04-Jul-20250

README.mdD04-Jul-2025642 3222

cargo_embargo.jsonD04-Jul-2025277 1515

rules.mkD04-Jul-2025570 1811

README.md

1# bit_field
2
3A simple crate which provides the `BitField` trait, which provides methods for operating on individual bits and ranges
4of bits on Rust's integral types.
5
6## Documentation
7Documentation is available on [docs.rs](https://docs.rs/bit_field)
8
9## Usage
10```TOML
11[dependencies]
12bit_field = "0.10.1"
13```
14
15## Example
16```rust
17extern crate bit_field;
18use bit_field::BitField;
19
20let mut x: u8 = 0;
21
22x.set_bit(7, true);
23assert_eq!(x, 0b1000_0000);
24
25x.set_bits(0..4, 0b1001);
26assert_eq!(x, 0b1000_1001);
27
28```
29
30## License
31This crate is dual-licensed under MIT or the Apache License (Version 2.0). See LICENSE-APACHE and LICENSE-MIT for details.
32