pub struct ScanResponse {
pub items: Option<Vec<Item>>,
pub count: usize,
pub scanned_count: usize,
pub last_evaluated_key: Option<HashMap<String, AttributeValue>>,
pub consumed_capacity: Option<ConsumedCapacity>,
}Fields§
§items: Option<Vec<Item>>§count: usize§scanned_count: usize§last_evaluated_key: Option<HashMap<String, AttributeValue>>§consumed_capacity: Option<ConsumedCapacity>Trait Implementations§
Source§impl Debug for ScanResponse
impl Debug for ScanResponse
Source§impl Default for ScanResponse
impl Default for ScanResponse
Source§fn default() -> ScanResponse
fn default() -> ScanResponse
Returns the “default value” for a type. Read more
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