Struct rusoto_devicefarm::DevicePoolCompatibilityResult[][src]

pub struct DevicePoolCompatibilityResult {
    pub compatible: Option<bool>,
    pub device: Option<Device>,
    pub incompatibility_messages: Option<Vec<IncompatibilityMessage>>,
}

Represents a device pool compatibility result.

Fields

Whether the result was compatible with the device pool.

The device (phone or tablet) that you wish to return information about.

Information about the compatibility.

Trait Implementations

impl Default for DevicePoolCompatibilityResult
[src]

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

impl Debug for DevicePoolCompatibilityResult
[src]

Formats the value using the given formatter. Read more

impl Clone for DevicePoolCompatibilityResult
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for DevicePoolCompatibilityResult
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations