pub struct ValMirror<U: Update> { /* private fields */ }Expand description
Trace Builder that accumulates UpdatesTyped
chunks and seals them into a single OrdValBatch.
Trait Implementations§
Source§impl<U: Update> Builder for ValMirror<U>
impl<U: Update> Builder for ValMirror<U>
Source§type Time = <U as ColumnarUpdate>::Time
type Time = <U as ColumnarUpdate>::Time
Timestamp type.
Source§type Input = UpdatesTyped<U>
type Input = UpdatesTyped<U>
Input item type.
Source§type Output = OrdValBatch<ColumnarLayout<U>>
type Output = OrdValBatch<ColumnarLayout<U>>
Output batch type.
Source§fn with_capacity(_keys: usize, _vals: usize, _upds: usize) -> Self
fn with_capacity(_keys: usize, _vals: usize, _upds: usize) -> Self
Allocates an empty builder with capacity for the specified keys, values, and updates. Read more
Source§fn done(self, description: Description<Self::Time>) -> Self::Output
fn done(self, description: Description<Self::Time>) -> Self::Output
Completes building and returns the batch.
Auto Trait Implementations§
impl<U> Freeze for ValMirror<U>
impl<U> RefUnwindSafe for ValMirror<U>where
<<U as ColumnarUpdate>::Key as Columnar>::Container: RefUnwindSafe,
<<U as ColumnarUpdate>::Val as Columnar>::Container: RefUnwindSafe,
<<U as ColumnarUpdate>::Time as Columnar>::Container: RefUnwindSafe,
<<U as ColumnarUpdate>::Diff as Columnar>::Container: RefUnwindSafe,
impl<U> Send for ValMirror<U>
impl<U> Sync for ValMirror<U>where
<<U as ColumnarUpdate>::Key as Columnar>::Container: Sync,
<<U as ColumnarUpdate>::Val as Columnar>::Container: Sync,
<<U as ColumnarUpdate>::Time as Columnar>::Container: Sync,
<<U as ColumnarUpdate>::Diff as Columnar>::Container: Sync,
impl<U> Unpin for ValMirror<U>where
<<U as ColumnarUpdate>::Key as Columnar>::Container: Unpin,
<<U as ColumnarUpdate>::Val as Columnar>::Container: Unpin,
<<U as ColumnarUpdate>::Time as Columnar>::Container: Unpin,
<<U as ColumnarUpdate>::Diff as Columnar>::Container: Unpin,
impl<U> UnsafeUnpin for ValMirror<U>
impl<U> UnwindSafe for ValMirror<U>where
<<U as ColumnarUpdate>::Key as Columnar>::Container: UnwindSafe,
<<U as ColumnarUpdate>::Val as Columnar>::Container: UnwindSafe,
<<U as ColumnarUpdate>::Time as Columnar>::Container: UnwindSafe,
<<U as ColumnarUpdate>::Diff as Columnar>::Container: 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> 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 moreSource§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.