pub struct BitVecFixed<const N: usize> {
pub data: u64,
}Expand description
Fixed-width bitvector backed by a const generic width parameter.
Fields§
§data: u64Auto Trait Implementations§
impl<const N: usize> Freeze for BitVecFixed<N>
impl<const N: usize> RefUnwindSafe for BitVecFixed<N>
impl<const N: usize> Send for BitVecFixed<N>
impl<const N: usize> Sync for BitVecFixed<N>
impl<const N: usize> Unpin for BitVecFixed<N>
impl<const N: usize> UnsafeUnpin for BitVecFixed<N>
impl<const N: usize> UnwindSafe for BitVecFixed<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