[][src]Struct rusoto_devicefarm::Device

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 Clone for Device
[src]

Performs copy-assignment from source. Read more

impl Default for Device
[src]

impl PartialEq<Device> for Device
[src]

impl Debug for Device
[src]

impl<'de> Deserialize<'de> for Device
[src]

Auto Trait Implementations

impl Send for Device

impl Sync for Device

Blanket Implementations

impl<T> From for T
[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Same for T

Should always be Self

impl<T> Erased for T