[][src]Struct google_gamesconfiguration1_configuration::GamesNumberFormatConfiguration

pub struct GamesNumberFormatConfiguration {
    pub currency_code: Option<String>,
    pub number_format_type: Option<String>,
    pub num_decimal_places: Option<i32>,
    pub suffix: Option<GamesNumberAffixConfiguration>,
}

This is a JSON template for a number format resource.

This type is not used in any activity, and only used as part of another schema.

Fields

currency_code: Option<String>

The curreny code string. Only used for CURRENCY format type.

number_format_type: Option<String>

The formatting for the number. Possible values are:

  • "NUMERIC" - Numbers are formatted to have no digits or a fixed number of digits after the decimal point according to locale. An optional custom unit can be added.
  • "TIME_DURATION" - Numbers are formatted to hours, minutes and seconds.
  • "CURRENCY" - Numbers are formatted to currency according to locale.
num_decimal_places: Option<i32>

The number of decimal places for number. Only used for NUMERIC format type.

suffix: Option<GamesNumberAffixConfiguration>

An optional suffix for the NUMERIC format type. These strings follow the same plural rules as all Android string resources.

Trait Implementations

impl Part for GamesNumberFormatConfiguration[src]

impl Default for GamesNumberFormatConfiguration[src]

impl Clone for GamesNumberFormatConfiguration[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for GamesNumberFormatConfiguration[src]

impl Serialize for GamesNumberFormatConfiguration[src]

impl<'de> Deserialize<'de> for GamesNumberFormatConfiguration[src]

Auto Trait Implementations

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Typeable for T where
    T: Any

fn get_type(&self) -> TypeId

Get the TypeId of this object.

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]