[][src]Struct google_playablelocations3::GoogleMapsUnityClientInfo

pub struct GoogleMapsUnityClientInfo {
    pub language_code: Option<String>,
    pub application_version: Option<String>,
    pub device_model: Option<String>,
    pub api_client: Option<String>,
    pub platform: Option<String>,
    pub application_id: Option<String>,
    pub operating_system: Option<String>,
    pub operating_system_build: Option<String>,
}

Client information.

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

Fields

language_code: Option<String>

Language code (in BCP-47 format) indicating the UI language of the client. Examples are "en", "en-US" or "ja-Latn". For more information, see http://www.unicode.org/reports/tr35/#Unicode_locale_identifier.

application_version: Option<String>

Application version number, such as "1.2.3". The exact format is application-dependent.

device_model: Option<String>

Device model as reported by the device. The exact format is platform-dependent.

api_client: Option<String>

API client name and version. For example, the SDK calling the API. The exact format is up to the client.

platform: Option<String>

Platform where the application is running.

application_id: Option<String>

Application ID, such as the package name on Android and the bundle identifier on iOS platforms.

operating_system: Option<String>

Operating system name and version as reported by the OS. For example, "Mac OS X 10.10.4". The exact format is platform-dependent.

operating_system_build: Option<String>

Build number/version of the operating system. e.g., the contents of android.os.Build.ID in Android, or the contents of sysctl "kern.osversion" in iOS.

Trait Implementations

impl Clone for GoogleMapsUnityClientInfo[src]

impl Debug for GoogleMapsUnityClientInfo[src]

impl Default for GoogleMapsUnityClientInfo[src]

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

impl Part for GoogleMapsUnityClientInfo[src]

impl Serialize for GoogleMapsUnityClientInfo[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, 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