pub struct OpensType {
pub opens_total: u64,
pub unique_opens: u64,
pub open_rate: f32,
pub last_open: String,
}Expand description
An object describing the open activity for the campaign.
Fields§
§opens_total: u64The total number of opens for a campaign.
unique_opens: u64The total number of unique opens.
open_rate: f32The number of unique opens divided by the total number of successful deliveries.
last_open: StringThe date and time of the last recorded open in ISO 8601 format.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for OpensType
impl<'de> Deserialize<'de> for OpensType
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 OpensType
impl RefUnwindSafe for OpensType
impl Send for OpensType
impl Sync for OpensType
impl Unpin for OpensType
impl UnsafeUnpin for OpensType
impl UnwindSafe for OpensType
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