[−][src]Struct rusoto_devicefarm::Device
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:
-
PHONE: The phone form factor.
-
TABLET: The tablet form factor.
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:
-
ANDROID: The Android platform.
-
IOS: The iOS platform.
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(&self) -> 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]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
[src]
__D: Deserializer<'de>,
Auto Trait Implementations
Blanket Implementations
impl<T> From for T
[src]
impl<T, U> Into for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
impl<T, U> TryFrom for T where
T: From<U>,
[src]
T: From<U>,
type Error = !
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T> Borrow for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from
)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
fn get_type_id(&self) -> TypeId
[src]
impl<T> DeserializeOwned for T where
T: Deserialize<'de>,
[src]
T: Deserialize<'de>,
impl<T> Erased for T
impl<T> Same for T
type Output = T
Should always be Self