Struct aws_sdk_quicksight::types::DisplayFormatOptions  
source · #[non_exhaustive]pub struct DisplayFormatOptions {
    pub use_blank_cell_format: bool,
    pub blank_cell_format: Option<String>,
    pub date_format: Option<String>,
    pub decimal_separator: Option<TopicNumericSeparatorSymbol>,
    pub grouping_separator: Option<String>,
    pub use_grouping: bool,
    pub fraction_digits: i32,
    pub prefix: Option<String>,
    pub suffix: Option<String>,
    pub unit_scaler: Option<NumberScale>,
    pub negative_format: Option<NegativeFormat>,
    pub currency_symbol: Option<String>,
}Expand description
A structure that represents additional options for display formatting.
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.use_blank_cell_format: boolA Boolean value that indicates whether to use blank cell format.
blank_cell_format: Option<String>Determines the blank cell format.
date_format: Option<String>Determines the DateTime format.
decimal_separator: Option<TopicNumericSeparatorSymbol>Determines the decimal separator.
grouping_separator: Option<String>Determines the grouping separator.
use_grouping: boolA Boolean value that indicates whether to use grouping.
fraction_digits: i32Determines the number of fraction digits.
prefix: Option<String>The prefix value for a display format.
suffix: Option<String>The suffix value for a display format.
unit_scaler: Option<NumberScale>The unit scaler. Valid values for this structure are: NONE, AUTO, THOUSANDS, MILLIONS, BILLIONS, and TRILLIONS.
negative_format: Option<NegativeFormat>The negative format.
currency_symbol: Option<String>The currency symbol, such as USD.
Implementations§
source§impl DisplayFormatOptions
 
impl DisplayFormatOptions
sourcepub fn use_blank_cell_format(&self) -> bool
 
pub fn use_blank_cell_format(&self) -> bool
A Boolean value that indicates whether to use blank cell format.
sourcepub fn blank_cell_format(&self) -> Option<&str>
 
pub fn blank_cell_format(&self) -> Option<&str>
Determines the blank cell format.
sourcepub fn date_format(&self) -> Option<&str>
 
pub fn date_format(&self) -> Option<&str>
Determines the DateTime format.
sourcepub fn decimal_separator(&self) -> Option<&TopicNumericSeparatorSymbol>
 
pub fn decimal_separator(&self) -> Option<&TopicNumericSeparatorSymbol>
Determines the decimal separator.
sourcepub fn grouping_separator(&self) -> Option<&str>
 
pub fn grouping_separator(&self) -> Option<&str>
Determines the grouping separator.
sourcepub fn use_grouping(&self) -> bool
 
pub fn use_grouping(&self) -> bool
A Boolean value that indicates whether to use grouping.
sourcepub fn fraction_digits(&self) -> i32
 
pub fn fraction_digits(&self) -> i32
Determines the number of fraction digits.
sourcepub fn unit_scaler(&self) -> Option<&NumberScale>
 
pub fn unit_scaler(&self) -> Option<&NumberScale>
The unit scaler. Valid values for this structure are: NONE, AUTO, THOUSANDS, MILLIONS, BILLIONS, and TRILLIONS.
sourcepub fn negative_format(&self) -> Option<&NegativeFormat>
 
pub fn negative_format(&self) -> Option<&NegativeFormat>
The negative format.
sourcepub fn currency_symbol(&self) -> Option<&str>
 
pub fn currency_symbol(&self) -> Option<&str>
The currency symbol, such as USD.
source§impl DisplayFormatOptions
 
impl DisplayFormatOptions
sourcepub fn builder() -> DisplayFormatOptionsBuilder
 
pub fn builder() -> DisplayFormatOptionsBuilder
Creates a new builder-style object to manufacture DisplayFormatOptions.
Trait Implementations§
source§impl Clone for DisplayFormatOptions
 
impl Clone for DisplayFormatOptions
source§fn clone(&self) -> DisplayFormatOptions
 
fn clone(&self) -> DisplayFormatOptions
1.0.0 · source§fn clone_from(&mut self, source: &Self)
 
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for DisplayFormatOptions
 
impl Debug for DisplayFormatOptions
source§impl PartialEq for DisplayFormatOptions
 
impl PartialEq for DisplayFormatOptions
source§fn eq(&self, other: &DisplayFormatOptions) -> bool
 
fn eq(&self, other: &DisplayFormatOptions) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for DisplayFormatOptions
Auto Trait Implementations§
impl Freeze for DisplayFormatOptions
impl RefUnwindSafe for DisplayFormatOptions
impl Send for DisplayFormatOptions
impl Sync for DisplayFormatOptions
impl Unpin for DisplayFormatOptions
impl UnwindSafe for DisplayFormatOptions
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> 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