Struct azalea_core::FixedBitSet
source · pub struct FixedBitSet<const N: usize>where
[(); { _ }]: Sized,{ /* private fields */ }
Expand description
A list of bits with a known fixed size.
Implementations§
Trait Implementations§
source§impl<const N: usize> Clone for FixedBitSet<N>where
[(); { _ }]: Sized,
impl<const N: usize> Clone for FixedBitSet<N>where [(); { _ }]: Sized,
source§fn clone(&self) -> FixedBitSet<N>
fn clone(&self) -> FixedBitSet<N>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl<const N: usize> McBufReadable for FixedBitSet<N>where
[u8; { _ }]: Sized,
impl<const N: usize> McBufReadable for FixedBitSet<N>where [u8; { _ }]: Sized,
source§impl<const N: usize> McBufWritable for FixedBitSet<N>where
[u8; { _ }]: Sized,
impl<const N: usize> McBufWritable for FixedBitSet<N>where [u8; { _ }]: Sized,
source§impl<const N: usize> PartialEq<FixedBitSet<N>> for FixedBitSet<N>where
[(); { _ }]: Sized,
impl<const N: usize> PartialEq<FixedBitSet<N>> for FixedBitSet<N>where [(); { _ }]: Sized,
source§fn eq(&self, other: &FixedBitSet<N>) -> bool
fn eq(&self, other: &FixedBitSet<N>) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl<const N: usize> Eq for FixedBitSet<N>where [(); { _ }]: Sized,
impl<const N: usize> StructuralEq for FixedBitSet<N>where [(); { _ }]: Sized,
impl<const N: usize> StructuralPartialEq for FixedBitSet<N>where [(); { _ }]: Sized,
Auto Trait Implementations§
impl<const N: usize> RefUnwindSafe for FixedBitSet<N>
impl<const N: usize> Send for FixedBitSet<N>
impl<const N: usize> Sync for FixedBitSet<N>
impl<const N: usize> Unpin for FixedBitSet<N>
impl<const N: usize> UnwindSafe for FixedBitSet<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