Struct aws_sdk_quicksight::types::WordCloudFieldWells
source · #[non_exhaustive]pub struct WordCloudFieldWells {
pub word_cloud_aggregated_field_wells: Option<WordCloudAggregatedFieldWells>,
}
Expand description
The field wells of a word cloud visual.
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
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.word_cloud_aggregated_field_wells: Option<WordCloudAggregatedFieldWells>
The aggregated field wells of a word cloud.
Implementations§
source§impl WordCloudFieldWells
impl WordCloudFieldWells
sourcepub fn word_cloud_aggregated_field_wells(
&self
) -> Option<&WordCloudAggregatedFieldWells>
pub fn word_cloud_aggregated_field_wells( &self ) -> Option<&WordCloudAggregatedFieldWells>
The aggregated field wells of a word cloud.
source§impl WordCloudFieldWells
impl WordCloudFieldWells
sourcepub fn builder() -> WordCloudFieldWellsBuilder
pub fn builder() -> WordCloudFieldWellsBuilder
Creates a new builder-style object to manufacture WordCloudFieldWells
.
Trait Implementations§
source§impl Clone for WordCloudFieldWells
impl Clone for WordCloudFieldWells
source§fn clone(&self) -> WordCloudFieldWells
fn clone(&self) -> WordCloudFieldWells
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for WordCloudFieldWells
impl Debug for WordCloudFieldWells
source§impl PartialEq for WordCloudFieldWells
impl PartialEq for WordCloudFieldWells
source§fn eq(&self, other: &WordCloudFieldWells) -> bool
fn eq(&self, other: &WordCloudFieldWells) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for WordCloudFieldWells
Auto Trait Implementations§
impl RefUnwindSafe for WordCloudFieldWells
impl Send for WordCloudFieldWells
impl Sync for WordCloudFieldWells
impl Unpin for WordCloudFieldWells
impl UnwindSafe for WordCloudFieldWells
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
Mutably borrows from an owned value. Read more
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>
Creates a shared type from an unshared type.