pub struct IndustryStatsType {
pub industry_stats_type: String,
pub open_rate: f32,
pub click_rate: f32,
pub bounce_rate: f32,
pub unopen_rate: f32,
pub unsub_rate: f32,
pub abuse_rate: f32,
}
Expand description
The average campaign statistics for your industry.
Fields§
§industry_stats_type: String
The type of business industry associated with your account. For example: retail, education, etc.
open_rate: f32
The industry open rate.
click_rate: f32
The industry click rate.
bounce_rate: f32
The industry bounce rate.
unopen_rate: f32
The industry unopened rate.
unsub_rate: f32
The industry unsubscribe rate.
abuse_rate: f32
The industry abuse rate.
Trait Implementations§
Source§impl Clone for IndustryStatsType
impl Clone for IndustryStatsType
Source§fn clone(&self) -> IndustryStatsType
fn clone(&self) -> IndustryStatsType
Returns a copy of the value. Read more
1.0.0 · 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 IndustryStatsType
impl Debug for IndustryStatsType
Source§impl Default for IndustryStatsType
impl Default for IndustryStatsType
Source§impl<'de> Deserialize<'de> for IndustryStatsType
impl<'de> Deserialize<'de> for IndustryStatsType
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 IndustryStatsType
impl RefUnwindSafe for IndustryStatsType
impl Send for IndustryStatsType
impl Sync for IndustryStatsType
impl Unpin for IndustryStatsType
impl UnwindSafe for IndustryStatsType
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