pub struct Analytics {
pub event_date: Option<Date>,
pub profile_views: Option<AnalyticsDataPoint>,
pub search_views: Option<AnalyticsDataPoint>,
pub contacts: Option<AnalyticsDataPoint>,
}Expand description
Analytics data 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_date: Option<Date>Date on which these events occurred.
profile_views: Option<AnalyticsDataPoint>Instances of users viewing the Company profile
on the specified date.
search_views: Option<AnalyticsDataPoint>Instances of users seeing the Company in Google Partners Search results
on the specified date.
contacts: Option<AnalyticsDataPoint>Instances of users contacting the Company
on the specified date.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Analytics
impl<'de> Deserialize<'de> for Analytics
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
impl Part for Analytics
Auto Trait Implementations§
impl Freeze for Analytics
impl RefUnwindSafe for Analytics
impl Send for Analytics
impl Sync for Analytics
impl Unpin for Analytics
impl UnwindSafe for Analytics
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