pub struct BitIterationStrategy;
Expand description
The iteration strategy for the given underlier type ‘U’ that is treated as a packed collection of bits.
Trait Implementations§
Source§impl<U> IterationStrategy<SmallU<1>, U> for BitIterationStrategy
impl<U> IterationStrategy<SmallU<1>, U> for BitIterationStrategy
Auto Trait Implementations§
impl Freeze for BitIterationStrategy
impl RefUnwindSafe for BitIterationStrategy
impl Send for BitIterationStrategy
impl Sync for BitIterationStrategy
impl Unpin for BitIterationStrategy
impl UnwindSafe for BitIterationStrategy
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> 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