pub struct BatchStatementResponse {
pub error: Option<BatchStatementError>,
pub item: Option<HashMap<String, AttributeValue>>,
pub table_name: Option<String>,
}
Expand description
A PartiQL batch statement response..
Fields§
§error: Option<BatchStatementError>
The error associated with a failed PartiQL batch statement.
item: Option<HashMap<String, AttributeValue>>
A DynamoDB item associated with a BatchStatementResponse
table_name: Option<String>
The table name associated with a failed PartiQL batch statement.
Trait Implementations§
Source§impl Clone for BatchStatementResponse
impl Clone for BatchStatementResponse
Source§fn clone(&self) -> BatchStatementResponse
fn clone(&self) -> BatchStatementResponse
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 BatchStatementResponse
impl Debug for BatchStatementResponse
Source§impl Default for BatchStatementResponse
impl Default for BatchStatementResponse
Source§fn default() -> BatchStatementResponse
fn default() -> BatchStatementResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for BatchStatementResponse
impl<'de> Deserialize<'de> for BatchStatementResponse
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 BatchStatementResponse
impl PartialEq for BatchStatementResponse
impl StructuralPartialEq for BatchStatementResponse
Auto Trait Implementations§
impl Freeze for BatchStatementResponse
impl RefUnwindSafe for BatchStatementResponse
impl Send for BatchStatementResponse
impl Sync for BatchStatementResponse
impl Unpin for BatchStatementResponse
impl UnwindSafe for BatchStatementResponse
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