Struct google_pubsub1::PullResponse[][src]

pub struct PullResponse {
    pub received_messages: Option<Vec<ReceivedMessage>>,
}

Response for the Pull 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

Received Pub/Sub messages. The list will be empty if there are no more messages available in the backlog. For JSON, the response can be entirely empty. The Pub/Sub system may return fewer than the maxMessages requested even if there are more messages available in the backlog.

Trait Implementations

impl Default for PullResponse
[src]

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

impl Clone for PullResponse
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for PullResponse
[src]

Formats the value using the given formatter. Read more

impl ResponseResult for PullResponse
[src]

Auto Trait Implementations