pub struct BitMap<E, S> { /* private fields */ }Implementations§
Trait Implementations§
Source§impl<E, S: BitStorage> BitOr for BitMap<E, S>
impl<E, S: BitStorage> BitOr for BitMap<E, S>
Source§impl<E, S: BitStorage> BitOrAssign for BitMap<E, S>
impl<E, S: BitStorage> BitOrAssign for BitMap<E, S>
Source§fn bitor_assign(&mut self, rhs: Self)
fn bitor_assign(&mut self, rhs: Self)
Performs the
|= operation. Read moreimpl<E: Copy, S: Copy> Copy for BitMap<E, S>
impl<E: Eq, S: Eq> Eq for BitMap<E, S>
Source§impl<E, S> FromIterator<E> for BitMap<E, S>
impl<E, S> FromIterator<E> for BitMap<E, S>
Source§fn from_iter<I: IntoIterator<Item = E>>(iter: I) -> Self
fn from_iter<I: IntoIterator<Item = E>>(iter: I) -> Self
Creates a value from an iterator. Read more
Source§impl<E: Ord, S: Ord> Ord for BitMap<E, S>
impl<E: Ord, S: Ord> Ord for BitMap<E, S>
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl<E: PartialOrd, S: PartialOrd> PartialOrd for BitMap<E, S>
impl<E: PartialOrd, S: PartialOrd> PartialOrd for BitMap<E, S>
impl<E: PartialEq, S: PartialEq> StructuralPartialEq for BitMap<E, S>
Auto Trait Implementations§
impl<E, S> Freeze for BitMap<E, S>where
S: Freeze,
impl<E, S> RefUnwindSafe for BitMap<E, S>where
S: RefUnwindSafe,
E: RefUnwindSafe,
impl<E, S> Send for BitMap<E, S>
impl<E, S> Sync for BitMap<E, S>
impl<E, S> Unpin for BitMap<E, S>
impl<E, S> UnsafeUnpin for BitMap<E, S>where
S: UnsafeUnpin,
impl<E, S> UnwindSafe for BitMap<E, S>where
S: UnwindSafe,
E: 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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more