Struct google_testing1::AndroidDevice[][src]

pub struct AndroidDevice {
    pub locale: Option<String>,
    pub android_version_id: Option<String>,
    pub android_model_id: Option<String>,
    pub orientation: Option<String>,
}

A single Android device.

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

Fields

The locale the test device used for testing. Use the EnvironmentDiscoveryService to get supported options. Required

The id of the Android OS version to be used. Use the EnvironmentDiscoveryService to get supported options. Required

The id of the Android device to be used. Use the EnvironmentDiscoveryService to get supported options. Required

How the device is oriented during the test. Use the EnvironmentDiscoveryService to get supported options. Required

Trait Implementations

impl Default for AndroidDevice
[src]

Returns the "default value" for a type. Read more

impl Clone for AndroidDevice
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for AndroidDevice
[src]

Formats the value using the given formatter. Read more

impl Part for AndroidDevice
[src]

Auto Trait Implementations