pub struct Message {
    pub subject: String,
    pub reply: Option<String>,
    pub data: Vec<u8>,
    pub headers: Option<HeaderMap>,
    /* private fields */
}
Expand description

A message received on a subject.

Fields

subject: String

The subject this message came from.

reply: Option<String>

Optional reply subject that may be used for sending a response to this message.

data: Vec<u8>

The message contents.

headers: Option<HeaderMap>

Optional headers associated with this Message.

Implementations

Creates new empty Message, without a Client. Useful for passing Message data or creating Message instance without caring about Client, but cannot be used on it’s own for associated methods as those require Client injected into Message and will error without it.

Respond to a request message.

Determine if the message is a no responders response from the server.

Acknowledge a JetStream message with a default acknowledgement. See AckKind documentation for details of what other types of acks are available. If you need to send a non-default ack, use the ack_kind method below. If you need to block until the server acks your ack, use the double_ack method instead.

Returns immediately if this message has already been double-acked.

Acknowledge a JetStream message. See AckKind documentation for details of what each variant means. If you need to block until the server acks your ack, use the double_ack method instead.

Does not check whether this message has already been double-acked.

Acknowledge a JetStream message and wait for acknowledgement from the server that it has received our ack. Retry acknowledgement until we receive a response. See AckKind documentation for details of what each variant means.

Returns immediately if this message has already been double-acked.

Returns the JetStream message ID if this is a JetStream message. Returns None if this is not a JetStream message with headers set.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

Formats the value using the given formatter. Read more

Converts to this type from the input type.

Converts to this type from the input type.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Should always be Self

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

Uses borrowed data to replace owned data, usually by cloning. Read more

Converts the given value to a String. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.