Struct aws_sdk_quicksight::types::KpiFieldWells
source · #[non_exhaustive]pub struct KpiFieldWells {
pub values: Option<Vec<MeasureField>>,
pub target_values: Option<Vec<MeasureField>>,
pub trend_groups: Option<Vec<DimensionField>>,
}Expand description
The field well configuration of a KPI visual.
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.values: Option<Vec<MeasureField>>The value field wells of a KPI visual.
target_values: Option<Vec<MeasureField>>The target value field wells of a KPI visual.
trend_groups: Option<Vec<DimensionField>>The trend group field wells of a KPI visual.
Implementations§
source§impl KpiFieldWells
impl KpiFieldWells
sourcepub fn values(&self) -> &[MeasureField]
pub fn values(&self) -> &[MeasureField]
The value field wells of a KPI visual.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .values.is_none().
sourcepub fn target_values(&self) -> &[MeasureField]
pub fn target_values(&self) -> &[MeasureField]
The target value field wells of a KPI visual.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .target_values.is_none().
sourcepub fn trend_groups(&self) -> &[DimensionField]
pub fn trend_groups(&self) -> &[DimensionField]
The trend group field wells of a KPI visual.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .trend_groups.is_none().
source§impl KpiFieldWells
impl KpiFieldWells
sourcepub fn builder() -> KpiFieldWellsBuilder
pub fn builder() -> KpiFieldWellsBuilder
Creates a new builder-style object to manufacture KpiFieldWells.
Trait Implementations§
source§impl Clone for KpiFieldWells
impl Clone for KpiFieldWells
source§fn clone(&self) -> KpiFieldWells
fn clone(&self) -> KpiFieldWells
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for KpiFieldWells
impl Debug for KpiFieldWells
source§impl PartialEq for KpiFieldWells
impl PartialEq for KpiFieldWells
source§fn eq(&self, other: &KpiFieldWells) -> bool
fn eq(&self, other: &KpiFieldWells) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for KpiFieldWells
Auto Trait Implementations§
impl Freeze for KpiFieldWells
impl RefUnwindSafe for KpiFieldWells
impl Send for KpiFieldWells
impl Sync for KpiFieldWells
impl Unpin for KpiFieldWells
impl UnwindSafe for KpiFieldWells
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