[][src]Struct rusoto_devicefarm::Device

pub struct Device {
    pub arn: Option<String>,
    pub availability: 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

arn: Option<String>

The device's ARN.

availability: Option<String>

Indicates how likely a device is available for a test run. Currently available in the ListDevices and GetDevice API methods.

carrier: Option<String>

The device's carrier.

cpu: Option<CPU>

Information about the device's CPU.

fleet_name: Option<String>

The name of the fleet to which this device belongs.

fleet_type: Option<String>

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

form_factor: Option<String>

The device's form factor.

Allowed values include:

  • PHONE

  • TABLET

heap_size: Option<i64>

The device's heap size, expressed in bytes.

image: Option<String>

The device's image name.

instances: Option<Vec<DeviceInstance>>

The instances that belong to this device.

manufacturer: Option<String>

The device's manufacturer name.

memory: Option<i64>

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

model: Option<String>

The device's model name.

model_id: Option<String>

The device's model ID.

name: Option<String>

The device's display name.

os: Option<String>

The device's operating system type.

platform: Option<String>

The device's platform.

Allowed values include:

  • ANDROID

  • IOS

radio: Option<String>

The device's radio.

remote_access_enabled: Option<bool>

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

remote_debug_enabled: Option<bool>

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

Remote debugging is no longer supported.

resolution: Option<Resolution>

The resolution of the device.

Trait Implementations

impl Clone for Device[src]

impl Debug for Device[src]

impl Default for Device[src]

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

impl PartialEq<Device> for Device[src]

impl StructuralPartialEq for Device[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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

type Owned = T

The resulting type after obtaining ownership.

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.