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 manufacturer: Option<String>,
    pub memory: Option<i64>,
    pub model: 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 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 device's manufacturer name.

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

The device's model name.

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.

The resolution of the device.

Trait Implementations

impl Default for Device
[src]

[src]

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

impl Debug for Device
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for Device
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl Send for Device

impl Sync for Device