[][src]Struct gcp_client::google::cloud::iot::v1::DeviceConfig

pub struct DeviceConfig {
    pub version: i64,
    pub cloud_update_time: Option<Timestamp>,
    pub device_ack_time: Option<Timestamp>,
    pub binary_data: Vec<u8>,
}

The device configuration. Eventually delivered to devices.

Fields

version: i64

[Output only] The version of this update. The version number is assigned by the server, and is always greater than 0 after device creation. The version must be 0 on the CreateDevice request if a config is specified; the response of CreateDevice will always have a value of 1.

cloud_update_time: Option<Timestamp>

[Output only] The time at which this configuration version was updated in Cloud IoT Core. This timestamp is set by the server.

device_ack_time: Option<Timestamp>

[Output only] The time at which Cloud IoT Core received the acknowledgment from the device, indicating that the device has received this configuration version. If this field is not present, the device has not yet acknowledged that it received this version. Note that when the config was sent to the device, many config versions may have been available in Cloud IoT Core while the device was disconnected, and on connection, only the latest version is sent to the device. Some versions may never be sent to the device, and therefore are never acknowledged. This timestamp is set by Cloud IoT Core.

binary_data: Vec<u8>

The device configuration data.

Trait Implementations

impl Clone for DeviceConfig[src]

impl Debug for DeviceConfig[src]

impl Default for DeviceConfig[src]

impl Message for DeviceConfig[src]

impl PartialEq<DeviceConfig> for DeviceConfig[src]

impl StructuralPartialEq for DeviceConfig[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> From<T> 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>, 

impl<T> WithSubscriber for T[src]