pub type ChunkArenaBitmap = __BindgenOpaqueArray<u32, 8>;Expand description
An object like std::bitset but which provides access to the underlying storage.
The type |StorageType| must be an unsigned integer or a mozilla::Atomic wrapping an unsigned integer. Use of atomic types makes word access atomic, but does not make operations that operate on the whole bitset atomic.
The limited API is due to expedience only; feel free to flesh out any std::bitset-like members.
Aliased Type§
#[repr(C)]pub struct ChunkArenaBitmap(pub [u32; 8]);Tuple Fields§
§0: [u32; 8]