Struct rustc_index::bit_set::GrowableBitSet [−][src]
Expand description
A resizable bitset type with a dense representation.
T
is an index type, typically a newtyped usize
wrapper, but it can also
just be usize
.
All operations that involve an element will panic if the element is equal to or greater than the domain size.
Fields
bit_set: BitSet<T>
Implementations
Ensure that the set can hold at least min_domain_size
elements.
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl<T> RefUnwindSafe for GrowableBitSet<T> where
T: RefUnwindSafe,
impl<T> Send for GrowableBitSet<T> where
T: Send,
impl<T> Sync for GrowableBitSet<T> where
T: Sync,
impl<T> Unpin for GrowableBitSet<T> where
T: Unpin,
impl<T> UnwindSafe for GrowableBitSet<T> where
T: UnwindSafe,
Blanket Implementations
Mutably borrows from an owned value. Read more
Layout
Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...)
attributes. Please see the Rust Reference’s “Type Layout” chapter for details on type layout guarantees.
Size: 32 bytes