[][src]Struct google_testing1::IosModel

pub struct IosModel {
    pub form_factor: Option<String>,
    pub name: Option<String>,
    pub tags: Option<Vec<String>>,
    pub supported_version_ids: Option<Vec<String>>,
    pub id: Option<String>,
    pub device_capabilities: Option<Vec<String>>,
}

A description of an iOS device tests may be run on.

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

Fields

form_factor: Option<String>

Whether this device is a phone, tablet, wearable, etc.

name: Option<String>

The human-readable name for this device model. Examples: "iPhone 4s", "iPad Mini 2".

tags: Option<Vec<String>>

Tags for this dimension. Examples: "default", "preview", "deprecated".

supported_version_ids: Option<Vec<String>>

The set of iOS major software versions this device supports.

id: Option<String>

The unique opaque id for this model. Use this for invoking the TestExecutionService.

device_capabilities: Option<Vec<String>>

Device capabilities. Copied from https://developer.apple.com/library/archive/documentation/DeviceInformation/Reference/iOSDeviceCompatibility/DeviceCompatibilityMatrix/DeviceCompatibilityMatrix.html

Trait Implementations

impl Part for IosModel[src]

impl Default for IosModel[src]

impl Clone for IosModel[src]

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

Performs copy-assignment from source. Read more

impl Debug for IosModel[src]

impl Serialize for IosModel[src]

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