Struct differential_dataflow::trace::rc_blanket_impls::RcBuilder
source · pub struct RcBuilder<B: Builder> { /* private fields */ }
Expand description
Wrapper type for building reference counted batches.
Trait Implementations§
source§impl<B: Builder> Builder for RcBuilder<B>
impl<B: Builder> Builder for RcBuilder<B>
Functionality for building batches from ordered update sequences.
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
Auto Trait Implementations§
impl<B> Freeze for RcBuilder<B>where
B: Freeze,
impl<B> RefUnwindSafe for RcBuilder<B>where
B: RefUnwindSafe,
impl<B> Send for RcBuilder<B>where
B: Send,
impl<B> Sync for RcBuilder<B>where
B: Sync,
impl<B> Unpin for RcBuilder<B>where
B: Unpin,
impl<B> UnwindSafe for RcBuilder<B>where
B: 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<'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
.