Struct indexical::impls::bit_set::SparseBitSet
pub struct SparseBitSet<T> { /* private fields */ }
Expand description
A fixed-size bitset type with a sparse representation and a maximum of
SPARSE_MAX
elements. The elements are stored as a sorted ArrayVec
with
no duplicates.
This type is used by HybridBitSet
; do not use directly.
Auto Trait Implementations§
impl<T> RefUnwindSafe for SparseBitSet<T>where
T: RefUnwindSafe,
impl<T> Send for SparseBitSet<T>where
T: Send,
impl<T> Sync for SparseBitSet<T>where
T: Sync,
impl<T> Unpin for SparseBitSet<T>where
T: Unpin,
impl<T> UnwindSafe for SparseBitSet<T>where
T: UnwindSafe,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more