13 releases (8 breaking)
Uses old Rust 2015
0.10.2 | Feb 25, 2023 |
---|---|
0.10.1 | Aug 23, 2020 |
0.10.0 | May 3, 2019 |
0.9.0 | Nov 15, 2017 |
0.4.0 | Jul 12, 2016 |
#237 in Rust patterns
821,657 downloads per month
Used in 365 crates
(93 directly)
29KB
532 lines
bit_field
A simple crate which provides the BitField
trait, which provides methods for operating on individual bits and ranges
of bits on Rust's integral types.
Documentation
Documentation is available on docs.rs
Usage
[dependencies]
bit_field = "0.10.1"
Example
extern crate bit_field;
use bit_field::BitField;
let mut x: u8 = 0;
x.set_bit(7, true);
assert_eq!(x, 0b1000_0000);
x.set_bits(0..4, 0b1001);
assert_eq!(x, 0b1000_1001);
License
This crate is dual-licensed under MIT or the Apache License (Version 2.0). See LICENSE-APACHE and LICENSE-MIT for details.
lib.rs
:
Provides the abstraction of a bit field, which allows for bit-level update and retrieval operations.