pub struct ExecuteStatementOutput {
pub items: Option<Vec<HashMap<String, AttributeValue>>>,
pub next_token: Option<String>,
}
Fields§
§items: Option<Vec<HashMap<String, AttributeValue>>>
If a read operation was used, this property will contain the result of the reade operation; a map of attribute names and their values. For the write operations this value will be empty.
next_token: Option<String>
If the response of a read request exceeds the response payload limit DynamoDB will set this value in the response. If set, you can use that this value in the subsequent request to get the remaining results.
Trait Implementations§
Source§impl Clone for ExecuteStatementOutput
impl Clone for ExecuteStatementOutput
Source§fn clone(&self) -> ExecuteStatementOutput
fn clone(&self) -> ExecuteStatementOutput
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 ExecuteStatementOutput
impl Debug for ExecuteStatementOutput
Source§impl Default for ExecuteStatementOutput
impl Default for ExecuteStatementOutput
Source§fn default() -> ExecuteStatementOutput
fn default() -> ExecuteStatementOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ExecuteStatementOutput
impl<'de> Deserialize<'de> for ExecuteStatementOutput
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ExecuteStatementOutput
impl PartialEq for ExecuteStatementOutput
impl StructuralPartialEq for ExecuteStatementOutput
Auto Trait Implementations§
impl Freeze for ExecuteStatementOutput
impl RefUnwindSafe for ExecuteStatementOutput
impl Send for ExecuteStatementOutput
impl Sync for ExecuteStatementOutput
impl Unpin for ExecuteStatementOutput
impl UnwindSafe for ExecuteStatementOutput
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