#[non_exhaustive]
pub struct DomainDeliverabilityCampaign {
Show 14 fields pub campaign_id: Option<String>, pub image_url: Option<String>, pub subject: Option<String>, pub from_address: Option<String>, pub sending_ips: Option<Vec<String>>, pub first_seen_date_time: Option<DateTime>, pub last_seen_date_time: Option<DateTime>, pub inbox_count: Option<i64>, pub spam_count: Option<i64>, pub read_rate: Option<f64>, pub delete_rate: Option<f64>, pub read_delete_rate: Option<f64>, pub projected_volume: Option<i64>, pub esps: Option<Vec<String>>,
}
Expand description

An object that contains the deliverability data for a specific campaign. This data is available for a campaign only if the campaign sent email by using a domain that the Deliverability dashboard is enabled for (PutDeliverabilityDashboardOption operation).

Fields (Non-exhaustive)§

This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.
§campaign_id: Option<String>

The unique identifier for the campaign. The Deliverability dashboard automatically generates and assigns this identifier to a campaign.

§image_url: Option<String>

The URL of an image that contains a snapshot of the email message that was sent.

§subject: Option<String>

The subject line, or title, of the email message.

§from_address: Option<String>

The verified email address that the email message was sent from.

§sending_ips: Option<Vec<String>>

The IP addresses that were used to send the email message.

§first_seen_date_time: Option<DateTime>

The first time when the email message was delivered to any recipient's inbox. This value can help you determine how long it took for a campaign to deliver an email message.

§last_seen_date_time: Option<DateTime>

The last time when the email message was delivered to any recipient's inbox. This value can help you determine how long it took for a campaign to deliver an email message.

§inbox_count: Option<i64>

The number of email messages that were delivered to recipients’ inboxes.

§spam_count: Option<i64>

The number of email messages that were delivered to recipients' spam or junk mail folders.

§read_rate: Option<f64>

The percentage of email messages that were opened by recipients. Due to technical limitations, this value only includes recipients who opened the message by using an email client that supports images.

§delete_rate: Option<f64>

The percentage of email messages that were deleted by recipients, without being opened first. Due to technical limitations, this value only includes recipients who opened the message by using an email client that supports images.

§read_delete_rate: Option<f64>

The percentage of email messages that were opened and then deleted by recipients. Due to technical limitations, this value only includes recipients who opened the message by using an email client that supports images.

§projected_volume: Option<i64>

The projected number of recipients that the email message was sent to.

§esps: Option<Vec<String>>

The major email providers who handled the email message.

Implementations§

source§

impl DomainDeliverabilityCampaign

source

pub fn campaign_id(&self) -> Option<&str>

The unique identifier for the campaign. The Deliverability dashboard automatically generates and assigns this identifier to a campaign.

source

pub fn image_url(&self) -> Option<&str>

The URL of an image that contains a snapshot of the email message that was sent.

source

pub fn subject(&self) -> Option<&str>

The subject line, or title, of the email message.

source

pub fn from_address(&self) -> Option<&str>

The verified email address that the email message was sent from.

source

pub fn sending_ips(&self) -> &[String]

The IP addresses that were used to send the email message.

If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .sending_ips.is_none().

source

pub fn first_seen_date_time(&self) -> Option<&DateTime>

The first time when the email message was delivered to any recipient's inbox. This value can help you determine how long it took for a campaign to deliver an email message.

source

pub fn last_seen_date_time(&self) -> Option<&DateTime>

The last time when the email message was delivered to any recipient's inbox. This value can help you determine how long it took for a campaign to deliver an email message.

source

pub fn inbox_count(&self) -> Option<i64>

The number of email messages that were delivered to recipients’ inboxes.

source

pub fn spam_count(&self) -> Option<i64>

The number of email messages that were delivered to recipients' spam or junk mail folders.

source

pub fn read_rate(&self) -> Option<f64>

The percentage of email messages that were opened by recipients. Due to technical limitations, this value only includes recipients who opened the message by using an email client that supports images.

source

pub fn delete_rate(&self) -> Option<f64>

The percentage of email messages that were deleted by recipients, without being opened first. Due to technical limitations, this value only includes recipients who opened the message by using an email client that supports images.

source

pub fn read_delete_rate(&self) -> Option<f64>

The percentage of email messages that were opened and then deleted by recipients. Due to technical limitations, this value only includes recipients who opened the message by using an email client that supports images.

source

pub fn projected_volume(&self) -> Option<i64>

The projected number of recipients that the email message was sent to.

source

pub fn esps(&self) -> &[String]

The major email providers who handled the email message.

If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .esps.is_none().

source§

impl DomainDeliverabilityCampaign

source

pub fn builder() -> DomainDeliverabilityCampaignBuilder

Creates a new builder-style object to manufacture DomainDeliverabilityCampaign.

Trait Implementations§

source§

impl Clone for DomainDeliverabilityCampaign

source§

fn clone(&self) -> DomainDeliverabilityCampaign

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for DomainDeliverabilityCampaign

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl PartialEq for DomainDeliverabilityCampaign

source§

fn eq(&self, other: &DomainDeliverabilityCampaign) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl StructuralPartialEq for DomainDeliverabilityCampaign

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

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

source§

impl<Unshared, Shared> IntoShared<Shared> for Unsharedwhere Shared: FromUnshared<Unshared>,

source§

fn into_shared(self) -> Shared

Creates a shared type from an unshared type.
source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

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

fn clone_into(&self, target: &mut T)

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

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more