Struct mailchimp_api::types::Domains
source · pub struct Domains {
pub bounces: i64,
pub bounces_pct: f64,
pub clicks: i64,
pub clicks_pct: f64,
pub delivered: i64,
pub domain: String,
pub emails_pct: f64,
pub emails_sent: i64,
pub opens: i64,
pub opens_pct: f64,
pub unsubs: i64,
pub unsubs_pct: f64,
}
Expand description
A single email domain’s performance
Fields
bounces: i64
A single email domain’s performance
bounces_pct: f64
A single email domain’s performance
clicks: i64
A single email domain’s performance
clicks_pct: f64
A single email domain’s performance
delivered: i64
A single email domain’s performance
domain: String
A single email domain’s performance
emails_pct: f64
A single email domain’s performance
emails_sent: i64
A single email domain’s performance
opens: i64
A single email domain’s performance
opens_pct: f64
A single email domain’s performance
unsubs: i64
A single email domain’s performance
unsubs_pct: f64
A single email domain’s performance
Trait Implementations
sourceimpl<'de> Deserialize<'de> for Domains
impl<'de> Deserialize<'de> for Domains
sourcefn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
sourceimpl JsonSchema for Domains
impl JsonSchema for Domains
sourcefn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
sourcefn json_schema(gen: &mut SchemaGenerator) -> Schema
fn json_schema(gen: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
sourcefn is_referenceable() -> bool
fn is_referenceable() -> bool
Whether JSON Schemas generated for this type should be re-used where possible using the
$ref
keyword. Read moreimpl StructuralPartialEq for Domains
Auto Trait Implementations
impl RefUnwindSafe for Domains
impl Send for Domains
impl Sync for Domains
impl Unpin for Domains
impl UnwindSafe for Domains
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more