Struct gapi_grpc::google::cloud::iot::v1::ModifyCloudToDeviceConfigRequest[][src]

pub struct ModifyCloudToDeviceConfigRequest {
    pub name: String,
    pub version_to_update: i64,
    pub binary_data: Vec<u8>,
}

Request for ModifyCloudToDeviceConfig.

Fields

name: String

Required. The name of the device. For example, projects/p0/locations/us-central1/registries/registry0/devices/device0 or projects/p0/locations/us-central1/registries/registry0/devices/{num_id}.

version_to_update: i64

The version number to update. If this value is zero, it will not check the version number of the server and will always update the current version; otherwise, this update will fail if the version number found on the server does not match this version number. This is used to support multiple simultaneous updates without losing data.

binary_data: Vec<u8>

Required. The configuration data for the device.

Trait Implementations

impl Clone for ModifyCloudToDeviceConfigRequest[src]

impl Debug for ModifyCloudToDeviceConfigRequest[src]

impl Default for ModifyCloudToDeviceConfigRequest[src]

impl Message for ModifyCloudToDeviceConfigRequest[src]

impl PartialEq<ModifyCloudToDeviceConfigRequest> for ModifyCloudToDeviceConfigRequest[src]

impl StructuralPartialEq for ModifyCloudToDeviceConfigRequest[src]

Auto Trait Implementations

impl RefUnwindSafe for ModifyCloudToDeviceConfigRequest

impl Send for ModifyCloudToDeviceConfigRequest

impl Sync for ModifyCloudToDeviceConfigRequest

impl Unpin for ModifyCloudToDeviceConfigRequest

impl UnwindSafe for ModifyCloudToDeviceConfigRequest

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]