[][src]Struct google_games1::InstanceIosDetails

pub struct InstanceIosDetails {
    pub preferred_for_iphone: Option<bool>,
    pub kind: Option<String>,
    pub support_iphone: Option<bool>,
    pub preferred_for_ipad: Option<bool>,
    pub itunes_app_id: Option<String>,
    pub bundle_identifier: Option<String>,
    pub support_ipad: Option<bool>,
}

This is a JSON template for the iOS details resource.

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

Fields

preferred_for_iphone: Option<bool>

Indicates that this instance is the default for new installations on iPhone devices.

kind: Option<String>

Uniquely identifies the type of this resource. Value is always the fixed string games#instanceIosDetails.

support_iphone: Option<bool>

Flag to indicate if this instance supports iPhone.

preferred_for_ipad: Option<bool>

Indicates that this instance is the default for new installations on iPad devices.

itunes_app_id: Option<String>

iTunes App ID.

bundle_identifier: Option<String>

Bundle identifier.

support_ipad: Option<bool>

Flag to indicate if this instance supports iPad.

Trait Implementations

impl Part for InstanceIosDetails[src]

impl Default for InstanceIosDetails[src]

impl Clone for InstanceIosDetails[src]

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

Performs copy-assignment from source. Read more

impl Debug for InstanceIosDetails[src]

impl Serialize for InstanceIosDetails[src]

impl<'de> Deserialize<'de> for InstanceIosDetails[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]