Struct google_androidenterprise1::LocalizedText[][src]

pub struct LocalizedText {
    pub locale: Option<String>,
    pub text: Option<String>,
}

A localized string with its locale.

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

Fields

The BCP47 tag for a locale. (e.g. "en-US", "de").

The text localized in the associated locale.

Trait Implementations

impl Default for LocalizedText
[src]

Returns the "default value" for a type. Read more

impl Clone for LocalizedText
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for LocalizedText
[src]

Formats the value using the given formatter. Read more

impl Part for LocalizedText
[src]

Auto Trait Implementations