pub struct BatchEnter<B, TInner> { /* private fields */ }
Expand description
Wrapper to provide batch to nested scope.
Implementations§
Trait Implementations§
Source§impl<B, TInner> BatchReader for BatchEnter<B, TInner>
impl<B, TInner> BatchReader for BatchEnter<B, TInner>
Source§type Key<'a> = <B as BatchReader>::Key<'a>
type Key<'a> = <B as BatchReader>::Key<'a>
Key by which updates are indexed.
Source§type KeyOwned = <B as BatchReader>::KeyOwned
type KeyOwned = <B as BatchReader>::KeyOwned
Owned version of the above.
Source§type Val<'a> = <B as BatchReader>::Val<'a>
type Val<'a> = <B as BatchReader>::Val<'a>
Values associated with keys.
Source§type ValOwned = <B as BatchReader>::ValOwned
type ValOwned = <B as BatchReader>::ValOwned
Owned version of the above.
Source§type Diff = <B as BatchReader>::Diff
type Diff = <B as BatchReader>::Diff
Associated update.
Source§type Cursor = BatchCursorEnter<<B as BatchReader>::Cursor, TInner>
type Cursor = BatchCursorEnter<<B as BatchReader>::Cursor, TInner>
The type used to enumerate the batch’s contents.
Source§fn description(&self) -> &Description<TInner>
fn description(&self) -> &Description<TInner>
Describes the times of the updates in the batch.
Source§impl<B: Clone, TInner: Clone> Clone for BatchEnter<B, TInner>
impl<B: Clone, TInner: Clone> Clone for BatchEnter<B, TInner>
Source§fn clone(&self) -> BatchEnter<B, TInner>
fn clone(&self) -> BatchEnter<B, TInner>
Returns a duplicate 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<B, TInner> Freeze for BatchEnter<B, TInner>where
B: Freeze,
impl<B, TInner> RefUnwindSafe for BatchEnter<B, TInner>where
B: RefUnwindSafe,
TInner: RefUnwindSafe,
impl<B, TInner> Send for BatchEnter<B, TInner>
impl<B, TInner> Sync for BatchEnter<B, TInner>
impl<B, TInner> Unpin for BatchEnter<B, TInner>
impl<B, TInner> UnwindSafe for BatchEnter<B, TInner>where
B: UnwindSafe,
TInner: 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