pub struct MultiVersionBatch {
pub items: Vec<MultiVersionValues>,
pub has_more: bool,
}Expand description
A batch of multi-version values with continuation info.
Fields§
§items: Vec<MultiVersionValues>The values in this batch.
has_more: boolWhether there are more items after this batch.
Implementations§
Trait Implementations§
Source§impl Clone for MultiVersionBatch
impl Clone for MultiVersionBatch
Source§fn clone(&self) -> MultiVersionBatch
fn clone(&self) -> MultiVersionBatch
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 Freeze for MultiVersionBatch
impl RefUnwindSafe for MultiVersionBatch
impl Send for MultiVersionBatch
impl Sync for MultiVersionBatch
impl Unpin for MultiVersionBatch
impl UnwindSafe for MultiVersionBatch
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