pub struct BatchFilter<B, F> { /* private fields */ }
Expand description
Wrapper to provide batch to nested scope.
Implementations§
Source§impl<B, F> BatchFilter<B, F>where
B: BatchReader,
impl<B, F> BatchFilter<B, F>where
B: BatchReader,
Trait Implementations§
Source§impl<B, F> BatchReader for BatchFilter<B, F>
impl<B, F> BatchReader for BatchFilter<B, F>
Source§type Key<'a> = <B as BatchReader>::Key<'a>
type Key<'a> = <B as BatchReader>::Key<'a>
Key by which updates are indexed.
Source§type Val<'a> = <B as BatchReader>::Val<'a>
type Val<'a> = <B as BatchReader>::Val<'a>
Values associated with keys.
Source§type Time = <B as BatchReader>::Time
type Time = <B as BatchReader>::Time
Timestamps associated with updates
Source§type TimeGat<'a> = <B as BatchReader>::TimeGat<'a>
type TimeGat<'a> = <B as BatchReader>::TimeGat<'a>
Borrowed form of timestamp.
Source§type Diff = <B as BatchReader>::Diff
type Diff = <B as BatchReader>::Diff
Owned form of update difference.
Source§type DiffGat<'a> = <B as BatchReader>::DiffGat<'a>
type DiffGat<'a> = <B as BatchReader>::DiffGat<'a>
Borrowed form of update difference.
Source§type Cursor = BatchCursorFilter<<B as BatchReader>::Cursor, F>
type Cursor = BatchCursorFilter<<B as BatchReader>::Cursor, F>
The type used to enumerate the batch’s contents.
Source§fn description(&self) -> &Description<B::Time>
fn description(&self) -> &Description<B::Time>
Describes the times of the updates in the batch.
Source§impl<B: Clone, F: Clone> Clone for BatchFilter<B, F>
impl<B: Clone, F: Clone> Clone for BatchFilter<B, F>
Source§fn clone(&self) -> BatchFilter<B, F>
fn clone(&self) -> BatchFilter<B, F>
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 moreAuto Trait Implementations§
impl<B, F> Freeze for BatchFilter<B, F>
impl<B, F> RefUnwindSafe for BatchFilter<B, F>where
B: RefUnwindSafe,
F: RefUnwindSafe,
impl<B, F> Send for BatchFilter<B, F>
impl<B, F> Sync for BatchFilter<B, F>
impl<B, F> Unpin for BatchFilter<B, F>
impl<B, F> UnwindSafe for BatchFilter<B, F>where
B: UnwindSafe,
F: 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<'a, S, T> Semigroup<&'a S> for Twhere
T: Semigroup<S>,
impl<'a, S, T> Semigroup<&'a S> for Twhere
T: Semigroup<S>,
Source§fn plus_equals(&mut self, rhs: &&'a S)
fn plus_equals(&mut self, rhs: &&'a S)
The method of
std::ops::AddAssign
, for types that do not implement AddAssign
.