Struct rusoto_sqs::DeleteMessageBatchResult[][src]

pub struct DeleteMessageBatchResult {
    pub failed: Vec<BatchResultErrorEntry>,
    pub successful: Vec<DeleteMessageBatchResultEntry>,
}

For each message in the batch, the response contains a DeleteMessageBatchResultEntry tag if the message is deleted or a BatchResultErrorEntry tag if the message can't be deleted.

Fields

A list of BatchResultErrorEntry items.

Trait Implementations

impl Default for DeleteMessageBatchResult
[src]

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

impl Debug for DeleteMessageBatchResult
[src]

Formats the value using the given formatter. Read more

impl Clone for DeleteMessageBatchResult
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for DeleteMessageBatchResult
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations