Struct google_pubsub1::ReceivedMessage[][src]

pub struct ReceivedMessage {
    pub ack_id: Option<String>,
    pub message: Option<PubsubMessage>,
}

A message and its corresponding acknowledgment ID.

This type is not used in any activity, and only used as part of another schema.

Fields

This ID can be used to acknowledge the received message.

The message.

Trait Implementations

impl Default for ReceivedMessage
[src]

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

impl Clone for ReceivedMessage
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for ReceivedMessage
[src]

Formats the value using the given formatter. Read more

impl Part for ReceivedMessage
[src]

Auto Trait Implementations