Struct socketlabs::response::AddressResult[][src]

pub struct AddressResult<'a> {
    pub email_address: Cow<'a, str>,
    pub accepted: bool,
    pub error_code: AddressResultErrorCode,
}

Representation of the SocketLabs AddressResult.

Fields

The recipient address which generated the warning or error.

A true or false value indicating whether or not the message was deliverable.

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

Trait Implementations

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

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl<'a> Send for AddressResult<'a>

impl<'a> Sync for AddressResult<'a>