commit | f66dc5242ee75ca43a41facd77877ff142c7e297 | [log] [tgz] |
---|---|---|
author | Android Build Coastguard Worker <[email protected]> | Thu Nov 07 02:09:17 2024 +0000 |
committer | Android Build Coastguard Worker <[email protected]> | Thu Nov 07 02:09:17 2024 +0000 |
tree | 312c067757ffde10cd022e9f9a22bf7c42e25436 | |
parent | 8899d24fc4797051c74e01d6b67eeb55a578f5c2 [diff] | |
parent | 637dcabb7b2f40612079222ba84c8a58842086f3 [diff] |
Snap for 12618558 from 637dcabb7b2f40612079222ba84c8a58842086f3 to sdk-release Change-Id: I951537f259a064f8949969b92a6e84d5ab4ffd47
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.