Struct aws_sdk_timestreamquery::types::builders::TypeBuilder
source · #[non_exhaustive]pub struct TypeBuilder { /* private fields */ }
Expand description
A builder for Type
.
Implementations§
source§impl TypeBuilder
impl TypeBuilder
sourcepub fn scalar_type(self, input: ScalarType) -> Self
pub fn scalar_type(self, input: ScalarType) -> Self
Indicates if the column is of type string, integer, Boolean, double, timestamp, date, time. For more information, see Supported data types.
sourcepub fn set_scalar_type(self, input: Option<ScalarType>) -> Self
pub fn set_scalar_type(self, input: Option<ScalarType>) -> Self
Indicates if the column is of type string, integer, Boolean, double, timestamp, date, time. For more information, see Supported data types.
sourcepub fn get_scalar_type(&self) -> &Option<ScalarType>
pub fn get_scalar_type(&self) -> &Option<ScalarType>
Indicates if the column is of type string, integer, Boolean, double, timestamp, date, time. For more information, see Supported data types.
sourcepub fn array_column_info(self, input: ColumnInfo) -> Self
pub fn array_column_info(self, input: ColumnInfo) -> Self
Indicates if the column is an array.
sourcepub fn set_array_column_info(self, input: Option<ColumnInfo>) -> Self
pub fn set_array_column_info(self, input: Option<ColumnInfo>) -> Self
Indicates if the column is an array.
sourcepub fn get_array_column_info(&self) -> &Option<ColumnInfo>
pub fn get_array_column_info(&self) -> &Option<ColumnInfo>
Indicates if the column is an array.
sourcepub fn time_series_measure_value_column_info(self, input: ColumnInfo) -> Self
pub fn time_series_measure_value_column_info(self, input: ColumnInfo) -> Self
Indicates if the column is a timeseries data type.
sourcepub fn set_time_series_measure_value_column_info(
self,
input: Option<ColumnInfo>
) -> Self
pub fn set_time_series_measure_value_column_info( self, input: Option<ColumnInfo> ) -> Self
Indicates if the column is a timeseries data type.
sourcepub fn get_time_series_measure_value_column_info(&self) -> &Option<ColumnInfo>
pub fn get_time_series_measure_value_column_info(&self) -> &Option<ColumnInfo>
Indicates if the column is a timeseries data type.
sourcepub fn row_column_info(self, input: ColumnInfo) -> Self
pub fn row_column_info(self, input: ColumnInfo) -> Self
Appends an item to row_column_info
.
To override the contents of this collection use set_row_column_info
.
Indicates if the column is a row.
sourcepub fn set_row_column_info(self, input: Option<Vec<ColumnInfo>>) -> Self
pub fn set_row_column_info(self, input: Option<Vec<ColumnInfo>>) -> Self
Indicates if the column is a row.
sourcepub fn get_row_column_info(&self) -> &Option<Vec<ColumnInfo>>
pub fn get_row_column_info(&self) -> &Option<Vec<ColumnInfo>>
Indicates if the column is a row.
Trait Implementations§
source§impl Clone for TypeBuilder
impl Clone for TypeBuilder
source§fn clone(&self) -> TypeBuilder
fn clone(&self) -> TypeBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for TypeBuilder
impl Debug for TypeBuilder
source§impl Default for TypeBuilder
impl Default for TypeBuilder
source§fn default() -> TypeBuilder
fn default() -> TypeBuilder
source§impl PartialEq for TypeBuilder
impl PartialEq for TypeBuilder
source§fn eq(&self, other: &TypeBuilder) -> bool
fn eq(&self, other: &TypeBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for TypeBuilder
Auto Trait Implementations§
impl Freeze for TypeBuilder
impl RefUnwindSafe for TypeBuilder
impl Send for TypeBuilder
impl Sync for TypeBuilder
impl Unpin for TypeBuilder
impl UnwindSafe for TypeBuilder
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