Struct socketlabs::response::MessageResult[][src]

pub struct MessageResult<'a> {
    pub index: u16,
    pub error_code: MessageResultErrorCode,
    pub address_result: Option<Vec<AddressResult<'a>>>,
}

Representation of the SocketLabs MessageResult.

Fields

The index of the message that this response represents from the original array posted.

The reason for message delivery failure when an error occurs on the message-level.

An array of AddressResult objects that contain the status of each address that failed. If no messages failed this array is empty.

Trait Implementations

impl<'a> Debug for MessageResult<'a>
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl<'a> Send for MessageResult<'a>

impl<'a> Sync for MessageResult<'a>