pub struct AnalyticsDataPoint {
pub event_locations: Option<Vec<LatLng>>,
pub event_count: Option<i32>,
}Expand description
Details of the analytics events for a Company within a single day.
This type is not used in any activity, and only used as part of another schema.
Fields§
§event_locations: Option<Vec<LatLng>>Location information of where these events occurred.
event_count: Option<i32>Number of times the type of event occurred. Meaning depends on context (e.g. profile views, contacts, etc.).
Trait Implementations§
Source§impl Clone for AnalyticsDataPoint
impl Clone for AnalyticsDataPoint
Source§fn clone(&self) -> AnalyticsDataPoint
fn clone(&self) -> AnalyticsDataPoint
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 AnalyticsDataPoint
impl Debug for AnalyticsDataPoint
Source§impl Default for AnalyticsDataPoint
impl Default for AnalyticsDataPoint
Source§fn default() -> AnalyticsDataPoint
fn default() -> AnalyticsDataPoint
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AnalyticsDataPoint
impl<'de> Deserialize<'de> for AnalyticsDataPoint
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 Serialize for AnalyticsDataPoint
impl Serialize for AnalyticsDataPoint
impl Part for AnalyticsDataPoint
Auto Trait Implementations§
impl Freeze for AnalyticsDataPoint
impl RefUnwindSafe for AnalyticsDataPoint
impl Send for AnalyticsDataPoint
impl Sync for AnalyticsDataPoint
impl Unpin for AnalyticsDataPoint
impl UnwindSafe for AnalyticsDataPoint
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