Struct aws_sdk_honeycode::types::TableColumn
source · #[non_exhaustive]pub struct TableColumn { /* private fields */ }Expand description
An object that contains attributes about a single column in a table
Implementations§
source§impl TableColumn
impl TableColumn
sourcepub fn table_column_id(&self) -> Option<&str>
pub fn table_column_id(&self) -> Option<&str>
The id of the column in the table.
sourcepub fn table_column_name(&self) -> Option<&str>
pub fn table_column_name(&self) -> Option<&str>
The name of the column in the table.
source§impl TableColumn
impl TableColumn
sourcepub fn builder() -> TableColumnBuilder
pub fn builder() -> TableColumnBuilder
Creates a new builder-style object to manufacture TableColumn.
Trait Implementations§
source§impl Clone for TableColumn
impl Clone for TableColumn
source§fn clone(&self) -> TableColumn
fn clone(&self) -> TableColumn
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 TableColumn
impl Debug for TableColumn
source§impl PartialEq<TableColumn> for TableColumn
impl PartialEq<TableColumn> for TableColumn
source§fn eq(&self, other: &TableColumn) -> bool
fn eq(&self, other: &TableColumn) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for TableColumn
Auto Trait Implementations§
impl RefUnwindSafe for TableColumn
impl Send for TableColumn
impl Sync for TableColumn
impl Unpin for TableColumn
impl UnwindSafe for TableColumn
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