Struct google_admob1::api::LocalizationSettings[][src]

pub struct LocalizationSettings {
    pub currency_code: Option<String>,
    pub language_code: Option<String>,
}

Localization settings for reports, such as currency and language. It affects how metrics are calculated.

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

Fields

currency_code: Option<String>

Currency code of the earning related metrics, which is the 3-letter code defined in ISO 4217. The daily average rate is used for the currency conversion. Defaults to the account currency code if unspecified.

language_code: Option<String>

Language used for any localized text, such as some dimension value display labels. The language tag defined in the IETF BCP47. Defaults to ‘en-US’ if unspecified.

Trait Implementations

impl Clone for LocalizationSettings[src]

impl Debug for LocalizationSettings[src]

impl Default for LocalizationSettings[src]

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

impl Part for LocalizationSettings[src]

impl Serialize for LocalizationSettings[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

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

impl<T> Instrument for T[src]

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

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

type Owned = T

The resulting type after obtaining ownership.

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.