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>
Functionality for building batches from ordered update sequences.
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