Struct aws_sdk_honeycode::model::CreateRowData
source · [−]#[non_exhaustive]pub struct CreateRowData { /* private fields */ }
Expand description
Data needed to create a single row in a table as part of the BatchCreateTableRows request.
Implementations
sourceimpl CreateRowData
impl CreateRowData
sourcepub fn batch_item_id(&self) -> Option<&str>
pub fn batch_item_id(&self) -> Option<&str>
An external identifier that represents the single row that is being created as part of the BatchCreateTableRows request. This can be any string that you can use to identify the row in the request. The BatchCreateTableRows API puts the batch item id in the results to allow you to link data in the request to data in the results.
sourceimpl CreateRowData
impl CreateRowData
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture CreateRowData
.
Trait Implementations
sourceimpl Clone for CreateRowData
impl Clone for CreateRowData
sourcefn clone(&self) -> CreateRowData
fn clone(&self) -> CreateRowData
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for CreateRowData
impl Debug for CreateRowData
sourceimpl PartialEq<CreateRowData> for CreateRowData
impl PartialEq<CreateRowData> for CreateRowData
sourcefn eq(&self, other: &CreateRowData) -> bool
fn eq(&self, other: &CreateRowData) -> bool
impl StructuralPartialEq for CreateRowData
Auto Trait Implementations
impl RefUnwindSafe for CreateRowData
impl Send for CreateRowData
impl Sync for CreateRowData
impl Unpin for CreateRowData
impl UnwindSafe for CreateRowData
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more