pub struct InstanceIosDetails {
pub bundle_identifier: Option<String>,
pub itunes_app_id: Option<String>,
pub kind: Option<String>,
pub preferred_for_ipad: Option<bool>,
pub preferred_for_iphone: Option<bool>,
pub support_ipad: Option<bool>,
pub support_iphone: Option<bool>,
}Expand description
The iOS details resource.
This type is not used in any activity, and only used as part of another schema.
Fields§
§bundle_identifier: Option<String>Bundle identifier.
itunes_app_id: Option<String>iTunes App ID.
kind: Option<String>Uniquely identifies the type of this resource. Value is always the fixed string games#instanceIosDetails.
preferred_for_ipad: Option<bool>Indicates that this instance is the default for new installations on iPad devices.
preferred_for_iphone: Option<bool>Indicates that this instance is the default for new installations on iPhone devices.
support_ipad: Option<bool>Flag to indicate if this instance supports iPad.
support_iphone: Option<bool>Flag to indicate if this instance supports iPhone.
Trait Implementations§
Source§impl Clone for InstanceIosDetails
impl Clone for InstanceIosDetails
Source§fn clone(&self) -> InstanceIosDetails
fn clone(&self) -> InstanceIosDetails
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for InstanceIosDetails
impl Debug for InstanceIosDetails
Source§impl Default for InstanceIosDetails
impl Default for InstanceIosDetails
Source§fn default() -> InstanceIosDetails
fn default() -> InstanceIosDetails
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for InstanceIosDetails
impl<'de> Deserialize<'de> for InstanceIosDetails
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for InstanceIosDetails
impl Serialize for InstanceIosDetails
impl Part for InstanceIosDetails
Auto Trait Implementations§
impl Freeze for InstanceIosDetails
impl RefUnwindSafe for InstanceIosDetails
impl Send for InstanceIosDetails
impl Sync for InstanceIosDetails
impl Unpin for InstanceIosDetails
impl UnwindSafe for InstanceIosDetails
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more