Struct indexical::impls::bit_set::FiniteBitSet
pub struct FiniteBitSet<T>(pub T)
where
T: FiniteBitSetTy;
Expand description
A fixed-sized bitset type represented by an integer type. Indices outwith than the range
representable by T
are considered set.
Tuple Fields§
§0: T
Auto Trait Implementations§
impl<T> RefUnwindSafe for FiniteBitSet<T>where
T: RefUnwindSafe,
impl<T> Send for FiniteBitSet<T>where
T: Send,
impl<T> Sync for FiniteBitSet<T>where
T: Sync,
impl<T> Unpin for FiniteBitSet<T>where
T: Unpin,
impl<T> UnwindSafe for FiniteBitSet<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