Struct differential_dataflow::trace::wrappers::freeze::BatchFreeze
source · pub struct BatchFreeze<B, F> { /* private fields */ }
Expand description
Wrapper to provide batch to nested scope.
Implementations§
Trait Implementations§
source§impl<B, F> BatchReader for BatchFreeze<B, F>
impl<B, F> BatchReader for BatchFreeze<B, F>
§type Key<'a> = <B as BatchReader>::Key<'a>
type Key<'a> = <B as BatchReader>::Key<'a>
Key by which updates are indexed.
§type Val<'a> = <B as BatchReader>::Val<'a>
type Val<'a> = <B as BatchReader>::Val<'a>
Values associated with keys.
§type Time = <B as BatchReader>::Time
type Time = <B as BatchReader>::Time
Timestamps associated with updates
§type TimeGat<'a> = <B as BatchReader>::TimeGat<'a>
type TimeGat<'a> = <B as BatchReader>::TimeGat<'a>
Borrowed form of timestamp.
§type Diff = <B as BatchReader>::Diff
type Diff = <B as BatchReader>::Diff
Owned form of update difference.
§type DiffGat<'a> = <B as BatchReader>::DiffGat<'a>
type DiffGat<'a> = <B as BatchReader>::DiffGat<'a>
Borrowed form of update difference.
§type Cursor = BatchCursorFreeze<<B as BatchReader>::Cursor, F>
type Cursor = BatchCursorFreeze<<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.
Auto Trait Implementations§
impl<B, F> Freeze for BatchFreeze<B, F>where
B: Freeze,
impl<B, F> RefUnwindSafe for BatchFreeze<B, F>where
B: RefUnwindSafe,
F: RefUnwindSafe,
impl<B, F> !Send for BatchFreeze<B, F>
impl<B, F> !Sync for BatchFreeze<B, F>
impl<B, F> Unpin for BatchFreeze<B, F>where
B: Unpin,
impl<B, F> UnwindSafe for BatchFreeze<B, F>where
B: UnwindSafe,
F: 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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)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
.