Struct aws_sdk_quicksight::types::DataLabelType
source · #[non_exhaustive]pub struct DataLabelType {
pub field_label_type: Option<FieldLabelType>,
pub data_path_label_type: Option<DataPathLabelType>,
pub range_ends_label_type: Option<RangeEndsLabelType>,
pub minimum_label_type: Option<MinimumLabelType>,
pub maximum_label_type: Option<MaximumLabelType>,
}
Expand description
The option that determines the data label type.
This is a union type structure. For this structure to be valid, only one of the attributes can be defined.
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.field_label_type: Option<FieldLabelType>
Determines the label configuration for the entire field.
data_path_label_type: Option<DataPathLabelType>
The option that specifies individual data values for labels.
range_ends_label_type: Option<RangeEndsLabelType>
Determines the label configuration for range end value in a visual.
minimum_label_type: Option<MinimumLabelType>
Determines the label configuration for the minimum value in a visual.
maximum_label_type: Option<MaximumLabelType>
Determines the label configuration for the maximum value in a visual.
Implementations§
source§impl DataLabelType
impl DataLabelType
sourcepub fn field_label_type(&self) -> Option<&FieldLabelType>
pub fn field_label_type(&self) -> Option<&FieldLabelType>
Determines the label configuration for the entire field.
sourcepub fn data_path_label_type(&self) -> Option<&DataPathLabelType>
pub fn data_path_label_type(&self) -> Option<&DataPathLabelType>
The option that specifies individual data values for labels.
sourcepub fn range_ends_label_type(&self) -> Option<&RangeEndsLabelType>
pub fn range_ends_label_type(&self) -> Option<&RangeEndsLabelType>
Determines the label configuration for range end value in a visual.
sourcepub fn minimum_label_type(&self) -> Option<&MinimumLabelType>
pub fn minimum_label_type(&self) -> Option<&MinimumLabelType>
Determines the label configuration for the minimum value in a visual.
sourcepub fn maximum_label_type(&self) -> Option<&MaximumLabelType>
pub fn maximum_label_type(&self) -> Option<&MaximumLabelType>
Determines the label configuration for the maximum value in a visual.
source§impl DataLabelType
impl DataLabelType
sourcepub fn builder() -> DataLabelTypeBuilder
pub fn builder() -> DataLabelTypeBuilder
Creates a new builder-style object to manufacture DataLabelType
.
Trait Implementations§
source§impl Clone for DataLabelType
impl Clone for DataLabelType
source§fn clone(&self) -> DataLabelType
fn clone(&self) -> DataLabelType
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for DataLabelType
impl Debug for DataLabelType
source§impl PartialEq for DataLabelType
impl PartialEq for DataLabelType
impl StructuralPartialEq for DataLabelType
Auto Trait Implementations§
impl Freeze for DataLabelType
impl RefUnwindSafe for DataLabelType
impl Send for DataLabelType
impl Sync for DataLabelType
impl Unpin for DataLabelType
impl UnwindSafe for DataLabelType
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§unsafe fn clone_to_uninit(&self, dst: *mut T)
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