Struct datatypes::FixedBitSet
source · pub struct FixedBitSet<const S: usize>(/* private fields */);Expand description
A wrapper for a bitset, containing n/64 values where n is the amount of bits But the size n = S is defined from the beginning
Trait Implementations§
Auto Trait Implementations§
impl<const S: usize> Freeze for FixedBitSet<S>
impl<const S: usize> RefUnwindSafe for FixedBitSet<S>
impl<const S: usize> Send for FixedBitSet<S>
impl<const S: usize> Sync for FixedBitSet<S>
impl<const S: usize> Unpin for FixedBitSet<S>
impl<const S: usize> UnwindSafe for FixedBitSet<S>
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