Struct google_pubsub1::ListTopicSnapshotsResponse[][src]

pub struct ListTopicSnapshotsResponse {
    pub next_page_token: Option<String>,
    pub snapshots: Option<Vec<String>>,
}

Response for the ListTopicSnapshots method.

BETA: This feature is part of a beta release. This API might be changed in backward-incompatible ways and is not recommended for production use. It is not subject to any SLA or deprecation policy.

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 not empty, indicates that there may be more snapshots that match the request; this value should be passed in a new ListTopicSnapshotsRequest to get more snapshots.

The names of the snapshots that match the request.

Trait Implementations

impl Default for ListTopicSnapshotsResponse
[src]

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

impl Clone for ListTopicSnapshotsResponse
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for ListTopicSnapshotsResponse
[src]

Formats the value using the given formatter. Read more

impl ResponseResult for ListTopicSnapshotsResponse
[src]

Auto Trait Implementations