pub struct ScanResponse {
pub total_count: usize,
pub rows: Vec<ScanRow>,
pub params: Option<Value>,
}Fields§
§total_count: usize§rows: Vec<ScanRow>§params: Option<Value>Trait Implementations§
Source§impl Clone for ScanResponse
impl Clone for ScanResponse
Source§fn clone(&self) -> ScanResponse
fn clone(&self) -> ScanResponse
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 moreSource§impl Debug for ScanResponse
impl Debug for ScanResponse
Source§impl PartialEq for ScanResponse
impl PartialEq for ScanResponse
impl StructuralPartialEq for ScanResponse
Auto Trait Implementations§
impl Freeze for ScanResponse
impl RefUnwindSafe for ScanResponse
impl Send for ScanResponse
impl Sync for ScanResponse
impl Unpin for ScanResponse
impl UnsafeUnpin for ScanResponse
impl UnwindSafe for ScanResponse
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