commit | 637dcabb7b2f40612079222ba84c8a58842086f3 | [log] [tgz] |
---|---|---|
author | James Farrell <[email protected]> | Tue Nov 05 17:09:05 2024 +0000 |
committer | James Farrell <[email protected]> | Tue Nov 05 17:09:05 2024 +0000 |
tree | 312c067757ffde10cd022e9f9a22bf7c42e25436 | |
parent | 8bf814e56d2c2287b5eee2ae072cf1b2dff011f0 [diff] |
Migrate 5 crates to monorepo. acpi bit_field libbpf-rs matches poll_token_derive Bug: http://b/339424309 Test: treehugger Change-Id: I29c06758eb725fc3ab99e48f4c2079444e08bdf4
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 is available on docs.rs
[dependencies] bit_field = "0.10.1"
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);
This crate is dual-licensed under MIT or the Apache License (Version 2.0). See LICENSE-APACHE and LICENSE-MIT for details.