pub struct AnalyticsSummary {
pub profile_views_count: Option<i32>,
pub search_views_count: Option<i32>,
pub contacts_count: Option<i32>,
}Expand description
Analytics aggregated data for a Company for a given date range.
This type is not used in any activity, and only used as part of another schema.
Fields§
§profile_views_count: Option<i32>Aggregated number of profile views for the Company for given date range.
search_views_count: Option<i32>Aggregated number of times users saw the Company
in Google Partners Search results for given date range.
contacts_count: Option<i32>Aggregated number of times users contacted the Company
for given date range.
Trait Implementations§
Source§impl Clone for AnalyticsSummary
impl Clone for AnalyticsSummary
Source§fn clone(&self) -> AnalyticsSummary
fn clone(&self) -> AnalyticsSummary
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 AnalyticsSummary
impl Debug for AnalyticsSummary
Source§impl Default for AnalyticsSummary
impl Default for AnalyticsSummary
Source§fn default() -> AnalyticsSummary
fn default() -> AnalyticsSummary
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AnalyticsSummary
impl<'de> Deserialize<'de> for AnalyticsSummary
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 AnalyticsSummary
impl Serialize for AnalyticsSummary
impl Part for AnalyticsSummary
Auto Trait Implementations§
impl Freeze for AnalyticsSummary
impl RefUnwindSafe for AnalyticsSummary
impl Send for AnalyticsSummary
impl Sync for AnalyticsSummary
impl Unpin for AnalyticsSummary
impl UnwindSafe for AnalyticsSummary
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