pub struct ListPageResult {
pub rows: Vec<Row>,
pub total_count: usize,
pub next_cursor: Option<String>,
pub snapshot_seq: u64,
pub rows_examined: usize,
}Fields§
§rows: Vec<Row>§total_count: usize§next_cursor: Option<String>§snapshot_seq: u64§rows_examined: usizeTrait Implementations§
Source§impl Clone for ListPageResult
impl Clone for ListPageResult
Source§fn clone(&self) -> ListPageResult
fn clone(&self) -> ListPageResult
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 ListPageResult
impl Debug for ListPageResult
impl Eq for ListPageResult
Source§impl PartialEq for ListPageResult
impl PartialEq for ListPageResult
Source§fn eq(&self, other: &ListPageResult) -> bool
fn eq(&self, other: &ListPageResult) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ListPageResult
Auto Trait Implementations§
impl Freeze for ListPageResult
impl RefUnwindSafe for ListPageResult
impl Send for ListPageResult
impl Sync for ListPageResult
impl Unpin for ListPageResult
impl UnsafeUnpin for ListPageResult
impl UnwindSafe for ListPageResult
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