pub struct EmailStatsNumbersDto {
pub delivered: f64,
pub opened: f64,
pub clicked: f64,
pub unsubscribed: f64,
pub complained: f64,
pub permanent_fail: f64,
pub temporary_fail: f64,
pub rejected: f64,
pub failed: f64,
pub replied: f64,
}Available on crate feature
emails only.Expand description
EmailStatsNumbersDto from the GoHighLevel OpenAPI spec.
Fields§
§delivered: f64Emails delivered Required by the API.
opened: f64Emails opened Required by the API.
clicked: f64Links clicked Required by the API.
unsubscribed: f64Unsubscribes Required by the API.
complained: f64Spam complaints Required by the API.
permanent_fail: f64Hard bounces Required by the API.
temporary_fail: f64Soft bounces Required by the API.
rejected: f64Rejected emails Required by the API.
failed: f64Failed emails Required by the API.
replied: f64Replies received Required by the API.
Trait Implementations§
Source§impl Clone for EmailStatsNumbersDto
impl Clone for EmailStatsNumbersDto
Source§fn clone(&self) -> EmailStatsNumbersDto
fn clone(&self) -> EmailStatsNumbersDto
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for EmailStatsNumbersDto
impl Debug for EmailStatsNumbersDto
Source§impl Default for EmailStatsNumbersDto
impl Default for EmailStatsNumbersDto
Source§fn default() -> EmailStatsNumbersDto
fn default() -> EmailStatsNumbersDto
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for EmailStatsNumbersDto
impl<'de> Deserialize<'de> for EmailStatsNumbersDto
Source§fn 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
Auto Trait Implementations§
impl Freeze for EmailStatsNumbersDto
impl RefUnwindSafe for EmailStatsNumbersDto
impl Send for EmailStatsNumbersDto
impl Sync for EmailStatsNumbersDto
impl Unpin for EmailStatsNumbersDto
impl UnsafeUnpin for EmailStatsNumbersDto
impl UnwindSafe for EmailStatsNumbersDto
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more