pub struct RangeScanBatch {
pub rows: Vec<(Bytes, Bytes)>,
pub extra: QueryExtra,
}Fields§
§rows: Vec<(Bytes, Bytes)>Rows read by this cursor pull.
extra: QueryExtraBackend-specific query metadata after reading these rows.
Trait Implementations§
Source§impl Clone for RangeScanBatch
impl Clone for RangeScanBatch
Source§fn clone(&self) -> RangeScanBatch
fn clone(&self) -> RangeScanBatch
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for RangeScanBatch
impl Debug for RangeScanBatch
Source§impl Default for RangeScanBatch
impl Default for RangeScanBatch
Source§fn default() -> RangeScanBatch
fn default() -> RangeScanBatch
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for RangeScanBatch
impl RefUnwindSafe for RangeScanBatch
impl Send for RangeScanBatch
impl Sync for RangeScanBatch
impl Unpin for RangeScanBatch
impl UnsafeUnpin for RangeScanBatch
impl UnwindSafe for RangeScanBatch
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