Struct google_runtimeconfig1_beta1::WatchVariableRequest[][src]

pub struct WatchVariableRequest {
    pub newer_than: Option<String>,
}

Request for the WatchVariable() method.

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

If specified, checks the current timestamp of the variable and if the current timestamp is newer than newerThan timestamp, the method returns immediately.

If not specified or the variable has an older timestamp, the watcher waits for a the value to change before returning.

Trait Implementations

impl Default for WatchVariableRequest
[src]

Returns the "default value" for a type. Read more

impl Clone for WatchVariableRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for WatchVariableRequest
[src]

Formats the value using the given formatter. Read more

impl RequestValue for WatchVariableRequest
[src]

Auto Trait Implementations