Struct aws_sdk_honeycode::types::builders::DataItemBuilder
source · #[non_exhaustive]pub struct DataItemBuilder { /* private fields */ }
Expand description
A builder for DataItem
.
Implementations§
source§impl DataItemBuilder
impl DataItemBuilder
sourcepub fn override_format(self, input: Format) -> Self
pub fn override_format(self, input: Format) -> Self
The overrideFormat is optional and is specified only if a particular row of data has a different format for the data than the default format defined on the screen or the table.
sourcepub fn set_override_format(self, input: Option<Format>) -> Self
pub fn set_override_format(self, input: Option<Format>) -> Self
The overrideFormat is optional and is specified only if a particular row of data has a different format for the data than the default format defined on the screen or the table.
sourcepub fn get_override_format(&self) -> &Option<Format>
pub fn get_override_format(&self) -> &Option<Format>
The overrideFormat is optional and is specified only if a particular row of data has a different format for the data than the default format defined on the screen or the table.
sourcepub fn raw_value(self, input: impl Into<String>) -> Self
pub fn raw_value(self, input: impl Into<String>) -> Self
The raw value of the data. e.g. jsmith@example.com
sourcepub fn set_raw_value(self, input: Option<String>) -> Self
pub fn set_raw_value(self, input: Option<String>) -> Self
The raw value of the data. e.g. jsmith@example.com
sourcepub fn get_raw_value(&self) -> &Option<String>
pub fn get_raw_value(&self) -> &Option<String>
The raw value of the data. e.g. jsmith@example.com
sourcepub fn formatted_value(self, input: impl Into<String>) -> Self
pub fn formatted_value(self, input: impl Into<String>) -> Self
The formatted value of the data. e.g. John Smith.
sourcepub fn set_formatted_value(self, input: Option<String>) -> Self
pub fn set_formatted_value(self, input: Option<String>) -> Self
The formatted value of the data. e.g. John Smith.
sourcepub fn get_formatted_value(&self) -> &Option<String>
pub fn get_formatted_value(&self) -> &Option<String>
The formatted value of the data. e.g. John Smith.
Trait Implementations§
source§impl Clone for DataItemBuilder
impl Clone for DataItemBuilder
source§fn clone(&self) -> DataItemBuilder
fn clone(&self) -> DataItemBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for DataItemBuilder
impl Debug for DataItemBuilder
source§impl Default for DataItemBuilder
impl Default for DataItemBuilder
source§fn default() -> DataItemBuilder
fn default() -> DataItemBuilder
source§impl PartialEq for DataItemBuilder
impl PartialEq for DataItemBuilder
source§fn eq(&self, other: &DataItemBuilder) -> bool
fn eq(&self, other: &DataItemBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.