const-bitfield

This crate provides a bitfield! macro for generating bitfield-like structures in Rust with support for compile-time evaluation using const. The following features are currently supported:

Unfortunately Rust Stable does not currently contain all required features for implementing this crate. To use of this library, you must use a recent Rust Nightly release and add the following feature flags to your crate root:

```rust

![feature(const_convert)] // optional, when using from/into conversion

![feature(constmutrefs)] // always required

![feature(consttraitimpl)] // always required

```

Here is a simple example of how this library can be used:

```rust

![feature(const_convert)] // optional, when using from/into conversion

![feature(constmutrefs)] // always required

![feature(consttraitimpl)] // always required

use const_bitfield::bitfield;

bitfield! { #[derive(Copy, Clone)] pub struct MyBitField(u32); u8, hello, sethello: 6, 0; // hello is stored in bits 0..=6 bool, world, setworld: 7; // world is stored in bit 7 // bits 8..=15 are unused u16, goodbye, set_goodbye: 31, 16; // goodbye is stored in bits 16..=31 }

fn example() { let mut bf = MyBitField(0);

bf.set_hello(0b0110110);
bf.set_world(true);
bf.set_goodbye(0xF00F);

println!("{}", bf.hello());
println!("{}", bf.world());
println!("{}", bf.goodbye());

} ```

A more detailed example can be found within tests/bitfield_gdt.rs which uses the bitfield! macro to implement parsing and building entries of the x86 Global Descriptor Table.

Additional Credits

This crate is heavily inspired by dzamlo/rust-bitfield.

The API between these two crates is similar, but no compatibility is guaranteed. Unlike the other library, this one focuses on const-support to allow using it as a helper for complex data structures at compile-time without having an impact on runtime performance.

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.