pub struct GetStatisticsPerUnitResponseClick {
pub seq: i64,
pub url: String,
pub click: Option<Option<i64>>,
pub unique_click: Option<Option<i64>>,
pub unique_click_of_request: Option<Option<i64>>,
}Fields§
§seq: i64The URL’s serial number.
url: StringURL.
click: Option<Option<i64>>Number of times the URL in the bubble was opened.
unique_click: Option<Option<i64>>Number of users that opened the URL in the bubble.
unique_click_of_request: Option<Option<i64>>Number of users who opened this url through any link in the message. If another message bubble contains the same URL and a user opens both links, it’s counted only once.
Implementations§
Source§impl GetStatisticsPerUnitResponseClick
impl GetStatisticsPerUnitResponseClick
pub fn new(seq: i64, url: String) -> GetStatisticsPerUnitResponseClick
Trait Implementations§
Source§impl Clone for GetStatisticsPerUnitResponseClick
impl Clone for GetStatisticsPerUnitResponseClick
Source§fn clone(&self) -> GetStatisticsPerUnitResponseClick
fn clone(&self) -> GetStatisticsPerUnitResponseClick
Returns a duplicate 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 Default for GetStatisticsPerUnitResponseClick
impl Default for GetStatisticsPerUnitResponseClick
Source§fn default() -> GetStatisticsPerUnitResponseClick
fn default() -> GetStatisticsPerUnitResponseClick
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetStatisticsPerUnitResponseClick
impl<'de> Deserialize<'de> for GetStatisticsPerUnitResponseClick
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
Source§impl PartialEq for GetStatisticsPerUnitResponseClick
impl PartialEq for GetStatisticsPerUnitResponseClick
Source§fn eq(&self, other: &GetStatisticsPerUnitResponseClick) -> bool
fn eq(&self, other: &GetStatisticsPerUnitResponseClick) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for GetStatisticsPerUnitResponseClick
Auto Trait Implementations§
impl Freeze for GetStatisticsPerUnitResponseClick
impl RefUnwindSafe for GetStatisticsPerUnitResponseClick
impl Send for GetStatisticsPerUnitResponseClick
impl Sync for GetStatisticsPerUnitResponseClick
impl Unpin for GetStatisticsPerUnitResponseClick
impl UnwindSafe for GetStatisticsPerUnitResponseClick
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