Struct google_cloudiot1::DeviceConfig [−][src]
pub struct DeviceConfig {
pub version: Option<String>,
pub cloud_update_time: Option<String>,
pub binary_data: Option<String>,
pub device_ack_time: Option<String>,
}The device configuration. Eventually delivered to devices.
Activities
This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).
Fields
version: Option<String>
[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<String>
[Output only] The time at which this configuration version was updated in Cloud IoT Core. This timestamp is set by the server.
binary_data: Option<String>
The device configuration data.
device_ack_time: Option<String>
[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.
Trait Implementations
impl Default for DeviceConfig[src]
impl Default for DeviceConfigfn default() -> DeviceConfig[src]
fn default() -> DeviceConfigReturns the "default value" for a type. Read more
impl Clone for DeviceConfig[src]
impl Clone for DeviceConfigfn clone(&self) -> DeviceConfig[src]
fn clone(&self) -> DeviceConfigReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)Performs copy-assignment from source. Read more
impl Debug for DeviceConfig[src]
impl Debug for DeviceConfigfn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl ResponseResult for DeviceConfig[src]
impl ResponseResult for DeviceConfigAuto Trait Implementations
impl Send for DeviceConfig
impl Send for DeviceConfigimpl Sync for DeviceConfig
impl Sync for DeviceConfig