[][src]Struct rusoto_alexaforbusiness::DeviceData

pub struct DeviceData {
    pub created_time: Option<f64>,
    pub device_arn: Option<String>,
    pub device_name: Option<String>,
    pub device_serial_number: Option<String>,
    pub device_status: Option<String>,
    pub device_status_info: Option<DeviceStatusInfo>,
    pub device_type: Option<String>,
    pub mac_address: Option<String>,
    pub network_profile_arn: Option<String>,
    pub network_profile_name: Option<String>,
    pub room_arn: Option<String>,
    pub room_name: Option<String>,
    pub software_version: Option<String>,
}

Device attributes.

Fields

created_time: Option<f64>

The time (in epoch) when the device data was created.

device_arn: Option<String>

The ARN of a device.

device_name: Option<String>

The name of a device.

device_serial_number: Option<String>

The serial number of a device.

device_status: Option<String>

The status of a device.

device_status_info: Option<DeviceStatusInfo>

Detailed information about a device's status.

device_type: Option<String>

The type of a device.

mac_address: Option<String>

The MAC address of a device.

network_profile_arn: Option<String>

The ARN of the network profile associated with a device.

network_profile_name: Option<String>

The name of the network profile associated with a device.

room_arn: Option<String>

The room ARN associated with a device.

room_name: Option<String>

The name of the room associated with a device.

software_version: Option<String>

The software version of a device.

Trait Implementations

impl Clone for DeviceData[src]

impl Debug for DeviceData[src]

impl Default for DeviceData[src]

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

impl PartialEq<DeviceData> for DeviceData[src]

impl StructuralPartialEq for DeviceData[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.