pub struct Batch<V, F>(/* private fields */);Expand description
A batch of updates that will be applied atomically to the Tree.
Implementations§
Trait Implementations§
Source§impl<V: Clone, F: Clone> Clone for ExpiringBatch<V, F>
impl<V: Clone, F: Clone> Clone for ExpiringBatch<V, F>
Source§fn clone(&self) -> ExpiringBatch<V, F>
fn clone(&self) -> ExpiringBatch<V, F>
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<V, F> Freeze for ExpiringBatch<V, F>
impl<V, F> RefUnwindSafe for ExpiringBatch<V, F>where
V: RefUnwindSafe,
F: RefUnwindSafe,
impl<V, F> Send for ExpiringBatch<V, F>
impl<V, F> Sync for ExpiringBatch<V, F>
impl<V, F> Unpin for ExpiringBatch<V, F>
impl<V, F> UnwindSafe for ExpiringBatch<V, F>where
V: UnwindSafe,
F: 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