[][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>

Reflects how likely a device will be available for a test run. It is 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 for fleet type are PRIVATE and PUBLIC.

form_factor: Option<String>

The device's form factor.

Allowed values include:

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 belonging 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:

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.

resolution: Option<Resolution>

The resolution of the device.

Trait Implementations

impl PartialEq<Device> for Device[src]

impl Default for Device[src]

impl Clone for Device[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

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]

type Owned = T

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

type Error = !

🔬 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> BorrowMut for T where
    T: ?Sized
[src]

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

type Error = <U as TryFrom<T>>::Error

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

The type returned in the event of a conversion error.

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

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

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self