Struct aws_sdk_quicksight::types::builders::OutputColumnBuilder
source · #[non_exhaustive]pub struct OutputColumnBuilder { /* private fields */ }Expand description
A builder for OutputColumn.
Implementations§
source§impl OutputColumnBuilder
impl OutputColumnBuilder
sourcepub fn description(self, input: impl Into<String>) -> Self
pub fn description(self, input: impl Into<String>) -> Self
A description for a column.
sourcepub fn set_description(self, input: Option<String>) -> Self
pub fn set_description(self, input: Option<String>) -> Self
A description for a column.
sourcepub fn get_description(&self) -> &Option<String>
pub fn get_description(&self) -> &Option<String>
A description for a column.
sourcepub fn type(self, input: ColumnDataType) -> Self
pub fn type(self, input: ColumnDataType) -> Self
The data type of the column.
sourcepub fn set_type(self, input: Option<ColumnDataType>) -> Self
pub fn set_type(self, input: Option<ColumnDataType>) -> Self
The data type of the column.
sourcepub fn get_type(&self) -> &Option<ColumnDataType>
pub fn get_type(&self) -> &Option<ColumnDataType>
The data type of the column.
sourcepub fn sub_type(self, input: ColumnDataSubType) -> Self
pub fn sub_type(self, input: ColumnDataSubType) -> Self
The sub data type of the column.
sourcepub fn set_sub_type(self, input: Option<ColumnDataSubType>) -> Self
pub fn set_sub_type(self, input: Option<ColumnDataSubType>) -> Self
The sub data type of the column.
sourcepub fn get_sub_type(&self) -> &Option<ColumnDataSubType>
pub fn get_sub_type(&self) -> &Option<ColumnDataSubType>
The sub data type of the column.
sourcepub fn build(self) -> OutputColumn
pub fn build(self) -> OutputColumn
Consumes the builder and constructs a OutputColumn.
Trait Implementations§
source§impl Clone for OutputColumnBuilder
impl Clone for OutputColumnBuilder
source§fn clone(&self) -> OutputColumnBuilder
fn clone(&self) -> OutputColumnBuilder
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 OutputColumnBuilder
impl Debug for OutputColumnBuilder
source§impl Default for OutputColumnBuilder
impl Default for OutputColumnBuilder
source§fn default() -> OutputColumnBuilder
fn default() -> OutputColumnBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for OutputColumnBuilder
impl PartialEq for OutputColumnBuilder
source§fn eq(&self, other: &OutputColumnBuilder) -> bool
fn eq(&self, other: &OutputColumnBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for OutputColumnBuilder
Auto Trait Implementations§
impl Freeze for OutputColumnBuilder
impl RefUnwindSafe for OutputColumnBuilder
impl Send for OutputColumnBuilder
impl Sync for OutputColumnBuilder
impl Unpin for OutputColumnBuilder
impl UnwindSafe for OutputColumnBuilder
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit)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>
Converts
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>
Converts
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 moreCreates a shared type from an unshared type.