pub struct BatchFrontier<B: BatchReader> { /* private fields */ }
Expand description
Wrapper to provide batch to nested scope.
Implementations§
Source§impl<B: BatchReader> BatchFrontier<B>
impl<B: BatchReader> BatchFrontier<B>
Sourcepub fn make_from(
batch: B,
since: AntichainRef<'_, B::Time>,
until: AntichainRef<'_, B::Time>,
) -> Self
pub fn make_from( batch: B, since: AntichainRef<'_, B::Time>, until: AntichainRef<'_, B::Time>, ) -> Self
Makes a new batch wrapper
Trait Implementations§
Source§impl<B: BatchReader> BatchReader for BatchFrontier<B>
impl<B: BatchReader> BatchReader for BatchFrontier<B>
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 = BatchCursorFrontier<<B as BatchReader>::Cursor>
type Cursor = BatchCursorFrontier<<B as BatchReader>::Cursor>
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 + BatchReader> Clone for BatchFrontier<B>
impl<B: Clone + BatchReader> Clone for BatchFrontier<B>
Source§fn clone(&self) -> BatchFrontier<B>
fn clone(&self) -> BatchFrontier<B>
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> Freeze for BatchFrontier<B>
impl<B> RefUnwindSafe for BatchFrontier<B>
impl<B> Send for BatchFrontier<B>where
B: Send,
impl<B> Sync for BatchFrontier<B>
impl<B> Unpin for BatchFrontier<B>
impl<B> UnwindSafe for BatchFrontier<B>
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
.