[][src]Struct google_testing1::Locale

pub struct Locale {
    pub region: Option<String>,
    pub id: Option<String>,
    pub name: Option<String>,
    pub tags: Option<Vec<String>>,
}

A location/region designation for language.

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

Fields

region: Option<String>

A human-friendly string representing the region for this locale. Example: "United States". Not present for every locale.

id: Option<String>

The id for this locale. Example: "en_US".

name: Option<String>

A human-friendly name for this language/locale. Example: "English".

tags: Option<Vec<String>>

Tags for this dimension. Example: "default".

Trait Implementations

impl Clone for Locale[src]

impl Debug for Locale[src]

impl Default for Locale[src]

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

impl Part for Locale[src]

impl Serialize for Locale[src]

Auto Trait Implementations

impl RefUnwindSafe for Locale

impl Send for Locale

impl Sync for Locale

impl Unpin for Locale

impl UnwindSafe for Locale

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, 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.

impl<T> Typeable for T where
    T: Any