#[non_exhaustive]pub struct WordCloudChartConfiguration {
pub field_wells: Option<WordCloudFieldWells>,
pub sort_configuration: Option<WordCloudSortConfiguration>,
pub category_label_options: Option<ChartAxisLabelOptions>,
pub word_cloud_options: Option<WordCloudOptions>,
}
Expand description
The configuration of a word cloud visual.
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.field_wells: Option<WordCloudFieldWells>
The field wells of the visual.
sort_configuration: Option<WordCloudSortConfiguration>
The sort configuration of a word cloud visual.
category_label_options: Option<ChartAxisLabelOptions>
The label options (label text, label visibility, and sort icon visibility) for the word cloud category.
word_cloud_options: Option<WordCloudOptions>
The options for a word cloud visual.
Implementations§
source§impl WordCloudChartConfiguration
impl WordCloudChartConfiguration
sourcepub fn field_wells(&self) -> Option<&WordCloudFieldWells>
pub fn field_wells(&self) -> Option<&WordCloudFieldWells>
The field wells of the visual.
sourcepub fn sort_configuration(&self) -> Option<&WordCloudSortConfiguration>
pub fn sort_configuration(&self) -> Option<&WordCloudSortConfiguration>
The sort configuration of a word cloud visual.
sourcepub fn category_label_options(&self) -> Option<&ChartAxisLabelOptions>
pub fn category_label_options(&self) -> Option<&ChartAxisLabelOptions>
The label options (label text, label visibility, and sort icon visibility) for the word cloud category.
sourcepub fn word_cloud_options(&self) -> Option<&WordCloudOptions>
pub fn word_cloud_options(&self) -> Option<&WordCloudOptions>
The options for a word cloud visual.
source§impl WordCloudChartConfiguration
impl WordCloudChartConfiguration
sourcepub fn builder() -> WordCloudChartConfigurationBuilder
pub fn builder() -> WordCloudChartConfigurationBuilder
Creates a new builder-style object to manufacture WordCloudChartConfiguration
.
Trait Implementations§
source§impl Clone for WordCloudChartConfiguration
impl Clone for WordCloudChartConfiguration
source§fn clone(&self) -> WordCloudChartConfiguration
fn clone(&self) -> WordCloudChartConfiguration
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 WordCloudChartConfiguration
impl Debug for WordCloudChartConfiguration
source§impl PartialEq for WordCloudChartConfiguration
impl PartialEq for WordCloudChartConfiguration
source§fn eq(&self, other: &WordCloudChartConfiguration) -> bool
fn eq(&self, other: &WordCloudChartConfiguration) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for WordCloudChartConfiguration
Auto Trait Implementations§
impl RefUnwindSafe for WordCloudChartConfiguration
impl Send for WordCloudChartConfiguration
impl Sync for WordCloudChartConfiguration
impl Unpin for WordCloudChartConfiguration
impl UnwindSafe for WordCloudChartConfiguration
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.