pub struct Bitset<const N: usize> { /* private fields */ }Expand description
Fixed-size bitset backed by a single u32 (max 32 bits).
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<const N: usize> Freeze for Bitset<N>
impl<const N: usize> RefUnwindSafe for Bitset<N>
impl<const N: usize> Send for Bitset<N>
impl<const N: usize> Sync for Bitset<N>
impl<const N: usize> Unpin for Bitset<N>
impl<const N: usize> UnsafeUnpin for Bitset<N>
impl<const N: usize> UnwindSafe for Bitset<N>
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