rust/mikros_std_deps/bit_field-0.10.2
2024-06-21 13:25:48 -05:00
..
benches
src
.cargo_vcs_info.json Bring in syscall layer from old mikros std 2024-06-21 13:24:51 -05:00
.gitignore Bring in syscall layer from old mikros std 2024-06-21 13:24:51 -05:00
.travis.yml Bring in syscall layer from old mikros std 2024-06-21 13:24:51 -05:00
Cargo.toml Bring in syscall layer from old mikros std 2024-06-21 13:24:51 -05:00
Cargo.toml.orig Bring in syscall layer from old mikros std 2024-06-21 13:24:51 -05:00
Changelog.md Bring in syscall layer from old mikros std 2024-06-21 13:24:51 -05:00
LICENSE-APACHE Bring in syscall layer from old mikros std 2024-06-21 13:24:51 -05:00
LICENSE-MIT Bring in syscall layer from old mikros std 2024-06-21 13:24:51 -05:00
README.md Bring in syscall layer from old mikros std 2024-06-21 13:24:51 -05:00

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.