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 ==
.impl StructuralPartialEq for DataItemBuilder
Auto Trait Implementations§
impl Freeze for DataItemBuilder
impl RefUnwindSafe for DataItemBuilder
impl Send for DataItemBuilder
impl Sync for DataItemBuilder
impl Unpin for DataItemBuilder
impl UnwindSafe for DataItemBuilder
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more