Struct aws_sdk_honeycode::types::builders::TableRowBuilder
source · #[non_exhaustive]pub struct TableRowBuilder { /* private fields */ }Expand description
A builder for TableRow.
Implementations§
source§impl TableRowBuilder
impl TableRowBuilder
sourcepub fn set_row_id(self, input: Option<String>) -> Self
pub fn set_row_id(self, input: Option<String>) -> Self
The id of the row in the table.
sourcepub fn cells(self, input: Cell) -> Self
pub fn cells(self, input: Cell) -> Self
Appends an item to cells.
To override the contents of this collection use set_cells.
A list of cells in the table row. The cells appear in the same order as the columns of the table.
Trait Implementations§
source§impl Clone for TableRowBuilder
impl Clone for TableRowBuilder
source§fn clone(&self) -> TableRowBuilder
fn clone(&self) -> TableRowBuilder
Returns a copy 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 TableRowBuilder
impl Debug for TableRowBuilder
source§impl Default for TableRowBuilder
impl Default for TableRowBuilder
source§fn default() -> TableRowBuilder
fn default() -> TableRowBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<TableRowBuilder> for TableRowBuilder
impl PartialEq<TableRowBuilder> for TableRowBuilder
source§fn eq(&self, other: &TableRowBuilder) -> bool
fn eq(&self, other: &TableRowBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for TableRowBuilder
Auto Trait Implementations§
impl RefUnwindSafe for TableRowBuilder
impl Send for TableRowBuilder
impl Sync for TableRowBuilder
impl Unpin for TableRowBuilder
impl UnwindSafe for TableRowBuilder
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