Struct google_pubsub1::Snapshot[][src]

pub struct Snapshot {
    pub topic: Option<String>,
    pub expire_time: Option<String>,
    pub name: Option<String>,
}

A snapshot resource.

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 name of the topic from which this snapshot is retaining messages.

The snapshot is guaranteed to exist up until this time. A newly-created snapshot expires no later than 7 days from the time of its creation. Its exact lifetime is determined at creation by the existing backlog in the source subscription. Specifically, the lifetime of the snapshot is 7 days - (age of oldest unacked message in the subscription). For example, consider a subscription whose oldest unacked message is 3 days old. If a snapshot is created from this subscription, the snapshot -- which will always capture this 3-day-old backlog as long as the snapshot exists -- will expire in 4 days. The service will refuse to create a snapshot that would expire in less than 1 hour after creation.

The name of the snapshot.

Trait Implementations

impl Default for Snapshot
[src]

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

impl Clone for Snapshot
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Snapshot
[src]

Formats the value using the given formatter. Read more

impl ResponseResult for Snapshot
[src]

Auto Trait Implementations

impl Send for Snapshot

impl Sync for Snapshot