pub struct BitmapDiff<'a, B: BitmapRead<N>, const N: usize> { /* private fields */ }Expand description
Uncommitted bitmap changes on top of a base bitmap. Records pushed bits
and cleared bits without cloning the base. Implements BitmapRead for
read-through access.
Trait Implementations§
Source§impl<B: BitmapRead<N>, const N: usize> BitmapRead<N> for BitmapDiff<'_, B, N>
impl<B: BitmapRead<N>, const N: usize> BitmapRead<N> for BitmapDiff<'_, B, N>
Auto Trait Implementations§
impl<'a, B, const N: usize> Freeze for BitmapDiff<'a, B, N>
impl<'a, B, const N: usize> RefUnwindSafe for BitmapDiff<'a, B, N>where
B: RefUnwindSafe,
impl<'a, B, const N: usize> Send for BitmapDiff<'a, B, N>where
B: Sync,
impl<'a, B, const N: usize> Sync for BitmapDiff<'a, B, N>where
B: Sync,
impl<'a, B, const N: usize> Unpin for BitmapDiff<'a, B, N>
impl<'a, B, const N: usize> UnsafeUnpin for BitmapDiff<'a, B, N>
impl<'a, B, const N: usize> UnwindSafe for BitmapDiff<'a, B, N>where
B: RefUnwindSafe,
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> FutureExt for T
impl<T> FutureExt for T
Source§fn with_context(self, otel_cx: Context) -> WithContext<Self>
fn with_context(self, otel_cx: Context) -> WithContext<Self>
Source§fn with_current_context(self) -> WithContext<Self>
fn with_current_context(self) -> WithContext<Self>
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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