pub struct QueryResponse {
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 QueryResponse
impl Debug for QueryResponse
Source§impl Default for QueryResponse
impl Default for QueryResponse
Source§fn default() -> QueryResponse
fn default() -> QueryResponse
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for QueryResponse
impl RefUnwindSafe for QueryResponse
impl Send for QueryResponse
impl Sync for QueryResponse
impl Unpin for QueryResponse
impl UnsafeUnpin for QueryResponse
impl UnwindSafe for QueryResponse
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