Struct google_pubsub1::UpdateTopicRequest[][src]

pub struct UpdateTopicRequest {
    pub topic: Option<Topic>,
    pub update_mask: Option<String>,
}

Request for the UpdateTopic 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

The updated topic object.

Indicates which fields in the provided topic to update. Must be specified and non-empty. Note that if update_mask contains "message_storage_policy" then the new value will be determined based on the policy configured at the project or organization level. The message_storage_policy must not be set in the topic provided above.

Trait Implementations

impl Default for UpdateTopicRequest
[src]

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

impl Clone for UpdateTopicRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for UpdateTopicRequest
[src]

Formats the value using the given formatter. Read more

impl RequestValue for UpdateTopicRequest
[src]

Auto Trait Implementations