Struct aws_sdk_quicksight::types::WordCloudOptions
source · #[non_exhaustive]pub struct WordCloudOptions {
pub word_orientation: Option<WordCloudWordOrientation>,
pub word_scaling: Option<WordCloudWordScaling>,
pub cloud_layout: Option<WordCloudCloudLayout>,
pub word_casing: Option<WordCloudWordCasing>,
pub word_padding: Option<WordCloudWordPadding>,
pub maximum_string_length: Option<i32>,
}
Expand description
The word cloud options for a word cloud 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.word_orientation: Option<WordCloudWordOrientation>
The word orientation options (horizontal, horizontal_and_vertical) for the words in a word cloud.
word_scaling: Option<WordCloudWordScaling>
The word scaling options (emphasize, normal) for the words in a word cloud.
cloud_layout: Option<WordCloudCloudLayout>
The cloud layout options (fluid, normal) of a word cloud.
word_casing: Option<WordCloudWordCasing>
The word casing options (lower_case, existing_case) for the words in a word cloud.
word_padding: Option<WordCloudWordPadding>
The word padding options (none, small, medium, large) for the words in a word cloud.
maximum_string_length: Option<i32>
The length limit of each word from 1-100.
Implementations§
source§impl WordCloudOptions
impl WordCloudOptions
sourcepub fn word_orientation(&self) -> Option<&WordCloudWordOrientation>
pub fn word_orientation(&self) -> Option<&WordCloudWordOrientation>
The word orientation options (horizontal, horizontal_and_vertical) for the words in a word cloud.
sourcepub fn word_scaling(&self) -> Option<&WordCloudWordScaling>
pub fn word_scaling(&self) -> Option<&WordCloudWordScaling>
The word scaling options (emphasize, normal) for the words in a word cloud.
sourcepub fn cloud_layout(&self) -> Option<&WordCloudCloudLayout>
pub fn cloud_layout(&self) -> Option<&WordCloudCloudLayout>
The cloud layout options (fluid, normal) of a word cloud.
sourcepub fn word_casing(&self) -> Option<&WordCloudWordCasing>
pub fn word_casing(&self) -> Option<&WordCloudWordCasing>
The word casing options (lower_case, existing_case) for the words in a word cloud.
sourcepub fn word_padding(&self) -> Option<&WordCloudWordPadding>
pub fn word_padding(&self) -> Option<&WordCloudWordPadding>
The word padding options (none, small, medium, large) for the words in a word cloud.
sourcepub fn maximum_string_length(&self) -> Option<i32>
pub fn maximum_string_length(&self) -> Option<i32>
The length limit of each word from 1-100.
source§impl WordCloudOptions
impl WordCloudOptions
sourcepub fn builder() -> WordCloudOptionsBuilder
pub fn builder() -> WordCloudOptionsBuilder
Creates a new builder-style object to manufacture WordCloudOptions
.
Trait Implementations§
source§impl Clone for WordCloudOptions
impl Clone for WordCloudOptions
source§fn clone(&self) -> WordCloudOptions
fn clone(&self) -> WordCloudOptions
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for WordCloudOptions
impl Debug for WordCloudOptions
source§impl PartialEq for WordCloudOptions
impl PartialEq for WordCloudOptions
impl StructuralPartialEq for WordCloudOptions
Auto Trait Implementations§
impl Freeze for WordCloudOptions
impl RefUnwindSafe for WordCloudOptions
impl Send for WordCloudOptions
impl Sync for WordCloudOptions
impl Unpin for WordCloudOptions
impl UnwindSafe for WordCloudOptions
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