Struct gapi_grpc::google::home::graph::v1::Device[][src]

pub struct Device {
    pub id: String,
    pub type: String,
    pub traits: Vec<String>,
    pub name: Option<DeviceNames>,
    pub will_report_state: bool,
    pub room_hint: String,
    pub structure_hint: String,
    pub device_info: Option<DeviceInfo>,
    pub attributes: Option<Struct>,
    pub custom_data: Option<Struct>,
    pub other_device_ids: Vec<AgentOtherDeviceId>,
    pub notification_supported_by_agent: bool,
}

Third-party device definition.

Fields

id: String

Third-party device ID.

type: String

Hardware type of the device. See device types.

traits: Vec<String>

Traits supported by the device. See device traits.

name: Option<DeviceNames>

Names given to this device by your smart home Action.

will_report_state: bool

Indicates whether your smart home Action will report state of this device to Google via [ReportStateAndNotification][google.home.graph.v1.HomeGraphApiService.ReportStateAndNotification].

room_hint: String

Suggested name for the room where this device is installed. Google attempts to use this value during user setup.

structure_hint: String

Suggested name for the structure where this device is installed. Google attempts to use this value during user setup.

device_info: Option<DeviceInfo>

Device manufacturer, model, hardware version, and software version.

attributes: Option<Struct>

Attributes for the traits supported by the device.

custom_data: Option<Struct>

Custom device attributes stored in Home Graph and provided to your smart home Action in each QUERY and EXECUTE intent.

other_device_ids: Vec<AgentOtherDeviceId>

Alternate IDs associated with this device. This is used to identify cloud synced devices enabled for local fulfillment.

notification_supported_by_agent: bool

Indicates whether your smart home Action will report notifications to Google for this device via [ReportStateAndNotification][google.home.graph.v1.HomeGraphApiService.ReportStateAndNotification].

If your smart home Action enables users to control device notifications, you should update this field and call [RequestSyncDevices][google.home.graph.v1.HomeGraphApiService.RequestSyncDevices].

Trait Implementations

impl Clone for Device[src]

impl Debug for Device[src]

impl Default for Device[src]

impl Message for Device[src]

impl PartialEq<Device> for Device[src]

impl StructuralPartialEq for Device[src]

Auto Trait Implementations

impl RefUnwindSafe for Device

impl Send for Device

impl Sync for Device

impl Unpin for Device

impl UnwindSafe for Device

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> 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> IntoRequest<T> for T[src]

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src]

impl<T> WithSubscriber for T[src]