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: bool
A 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: bool
A Boolean value that indicates whether to use grouping.
fraction_digits: i32
Determines 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 ==
.