Struct aws_sdk_quicksight::types::DataPathType
source · #[non_exhaustive]pub struct DataPathType {
pub pivot_table_data_path_type: Option<PivotTableDataPathType>,
}Expand description
The type of the data path value.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.pivot_table_data_path_type: Option<PivotTableDataPathType>The type of data path value utilized in a pivot table. Choose one of the following options:
-
HIERARCHY_ROWS_LAYOUT_COLUMN- The type of data path for the rows layout column, whenRowsLayoutis set toHIERARCHY. -
MULTIPLE_ROW_METRICS_COLUMN- The type of data path for the metric column when the row is set to Metric Placement. -
EMPTY_COLUMN_HEADER- The type of data path for the column with empty column header, when there is no field inColumnsFieldWelland the row is set to Metric Placement. -
COUNT_METRIC_COLUMN- The type of data path for the column withCOUNTas the metric, when there is no field in theValuesFieldWell.
Implementations§
source§impl DataPathType
impl DataPathType
sourcepub fn pivot_table_data_path_type(&self) -> Option<&PivotTableDataPathType>
pub fn pivot_table_data_path_type(&self) -> Option<&PivotTableDataPathType>
The type of data path value utilized in a pivot table. Choose one of the following options:
-
HIERARCHY_ROWS_LAYOUT_COLUMN- The type of data path for the rows layout column, whenRowsLayoutis set toHIERARCHY. -
MULTIPLE_ROW_METRICS_COLUMN- The type of data path for the metric column when the row is set to Metric Placement. -
EMPTY_COLUMN_HEADER- The type of data path for the column with empty column header, when there is no field inColumnsFieldWelland the row is set to Metric Placement. -
COUNT_METRIC_COLUMN- The type of data path for the column withCOUNTas the metric, when there is no field in theValuesFieldWell.
source§impl DataPathType
impl DataPathType
sourcepub fn builder() -> DataPathTypeBuilder
pub fn builder() -> DataPathTypeBuilder
Creates a new builder-style object to manufacture DataPathType.
Trait Implementations§
source§impl Clone for DataPathType
impl Clone for DataPathType
source§fn clone(&self) -> DataPathType
fn clone(&self) -> DataPathType
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for DataPathType
impl Debug for DataPathType
source§impl PartialEq for DataPathType
impl PartialEq for DataPathType
source§fn eq(&self, other: &DataPathType) -> bool
fn eq(&self, other: &DataPathType) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for DataPathType
Auto Trait Implementations§
impl Freeze for DataPathType
impl RefUnwindSafe for DataPathType
impl Send for DataPathType
impl Sync for DataPathType
impl Unpin for DataPathType
impl UnwindSafe for DataPathType
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> 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)
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>
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