Struct rustc_data_structures::bitslice::BitLookup[][src]

struct BitLookup {
    word: usize,
    bit_in_word: usize,
    bit_mask: Word,
}
🔬 This is a nightly-only experimental API. (rustc_private)

this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml instead?

Fields

🔬 This is a nightly-only experimental API. (rustc_private)

this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml instead?

An index of the word holding the bit in original [Word] of query.

🔬 This is a nightly-only experimental API. (rustc_private)

this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml instead?

Index of the particular bit within the word holding the bit.

🔬 This is a nightly-only experimental API. (rustc_private)

this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml instead?

Word with single 1-bit set corresponding to where the bit is located.

Auto Trait Implementations

impl Send for BitLookup

impl Sync for BitLookup