Struct rusoto_devicefarm::Device[][src]

pub struct Device {
    pub arn: Option<String>,
    pub carrier: Option<String>,
    pub cpu: Option<CPU>,
    pub fleet_name: Option<String>,
    pub fleet_type: Option<String>,
    pub form_factor: Option<String>,
    pub heap_size: Option<i64>,
    pub image: Option<String>,
    pub instances: Option<Vec<DeviceInstance>>,
    pub manufacturer: Option<String>,
    pub memory: Option<i64>,
    pub model: Option<String>,
    pub model_id: Option<String>,
    pub name: Option<String>,
    pub os: Option<String>,
    pub platform: Option<String>,
    pub radio: Option<String>,
    pub remote_access_enabled: Option<bool>,
    pub remote_debug_enabled: Option<bool>,
    pub resolution: Option<Resolution>,
}

Represents a device type that an app is tested against.

Fields

The device's ARN.

The device's carrier.

Information about the device's CPU.

The name of the fleet to which this device belongs.

The type of fleet to which this device belongs. Possible values for fleet type are PRIVATE and PUBLIC.

The device's form factor.

Allowed values include:

  • PHONE: The phone form factor.

  • TABLET: The tablet form factor.

The device's heap size, expressed in bytes.

The device's image name.

The instances belonging to this device.

The device's manufacturer name.

The device's total memory size, expressed in bytes.

The device's model name.

The device's model ID.

The device's display name.

The device's operating system type.

The device's platform.

Allowed values include:

  • ANDROID: The Android platform.

  • IOS: The iOS platform.

The device's radio.

Specifies whether remote access has been enabled for the specified device.

This flag is set to true if remote debugging is enabled for the device.

The resolution of the device.

Trait Implementations

impl Default for Device
[src]

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

impl Debug for Device
[src]

Formats the value using the given formatter. Read more

impl Clone for Device
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for Device
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

impl Send for Device

impl Sync for Device