#[non_exhaustive]pub struct BatchStatementResponse {
pub error: Option<BatchStatementError>,
pub item: Option<Item>,
pub table_name: Option<String>,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.error: Option<BatchStatementError>§item: Option<Item>§table_name: Option<String>The member statement’s target table, echoed on a successful response
(with or without an Item), matching DynamoDB. Omitted on a
per-statement error and when the statement fails to parse.
Trait Implementations§
Source§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
Auto Trait Implementations§
impl Freeze for BatchStatementResponse
impl RefUnwindSafe for BatchStatementResponse
impl Send for BatchStatementResponse
impl Sync for BatchStatementResponse
impl Unpin for BatchStatementResponse
impl UnsafeUnpin 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