Struct aws_sdk_quicksight::types::TopicIr
source · #[non_exhaustive]pub struct TopicIr {
pub metrics: Option<Vec<TopicIrMetric>>,
pub group_by_list: Option<Vec<TopicIrGroupBy>>,
pub filters: Option<Vec<Vec<TopicIrFilterOption>>>,
pub sort: Option<TopicSortClause>,
pub contribution_analysis: Option<TopicIrContributionAnalysis>,
pub visual: Option<VisualOptions>,
}Expand description
The definition for a TopicIR.
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.metrics: Option<Vec<TopicIrMetric>>The metrics for the TopicIR.
group_by_list: Option<Vec<TopicIrGroupBy>>The GroupBy list for the TopicIR.
filters: Option<Vec<Vec<TopicIrFilterOption>>>The filters for the TopicIR.
sort: Option<TopicSortClause>The sort for the TopicIR.
contribution_analysis: Option<TopicIrContributionAnalysis>The contribution analysis for the TopicIR.
visual: Option<VisualOptions>The visual for the TopicIR.
Implementations§
source§impl TopicIr
impl TopicIr
sourcepub fn metrics(&self) -> &[TopicIrMetric]
pub fn metrics(&self) -> &[TopicIrMetric]
The metrics for the TopicIR.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .metrics.is_none().
sourcepub fn group_by_list(&self) -> &[TopicIrGroupBy]
pub fn group_by_list(&self) -> &[TopicIrGroupBy]
The GroupBy list for the TopicIR.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .group_by_list.is_none().
sourcepub fn filters(&self) -> &[Vec<TopicIrFilterOption>]
pub fn filters(&self) -> &[Vec<TopicIrFilterOption>]
The filters for the TopicIR.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .filters.is_none().
sourcepub fn sort(&self) -> Option<&TopicSortClause>
pub fn sort(&self) -> Option<&TopicSortClause>
The sort for the TopicIR.
sourcepub fn contribution_analysis(&self) -> Option<&TopicIrContributionAnalysis>
pub fn contribution_analysis(&self) -> Option<&TopicIrContributionAnalysis>
The contribution analysis for the TopicIR.
sourcepub fn visual(&self) -> Option<&VisualOptions>
pub fn visual(&self) -> Option<&VisualOptions>
The visual for the TopicIR.
Trait Implementations§
impl StructuralPartialEq for TopicIr
Auto Trait Implementations§
impl Freeze for TopicIr
impl RefUnwindSafe for TopicIr
impl Send for TopicIr
impl Sync for TopicIr
impl Unpin for TopicIr
impl UnwindSafe for TopicIr
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