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