pub struct LinkedInAggregateAnalyticsTotalResponseAnalytics {
pub impressions: Option<i32>,
pub reach: Option<i32>,
pub reactions: Option<i32>,
pub comments: Option<i32>,
pub shares: Option<i32>,
pub saves: Option<i32>,
pub sends: Option<i32>,
pub engagement_rate: Option<f64>,
}Fields§
§impressions: Option<i32>Total impressions across all posts
reach: Option<i32>Unique members reached across all posts
reactions: Option<i32>Total reactions across all posts
comments: Option<i32>Total comments across all posts
Total reshares across all posts
saves: Option<i32>Total times posts were saved (personal accounts only)
sends: Option<i32>Total times posts were sent via LinkedIn messaging (personal accounts only)
engagement_rate: Option<f64>Overall engagement rate as percentage
Implementations§
Trait Implementations§
Source§impl Clone for LinkedInAggregateAnalyticsTotalResponseAnalytics
impl Clone for LinkedInAggregateAnalyticsTotalResponseAnalytics
Source§fn clone(&self) -> LinkedInAggregateAnalyticsTotalResponseAnalytics
fn clone(&self) -> LinkedInAggregateAnalyticsTotalResponseAnalytics
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 LinkedInAggregateAnalyticsTotalResponseAnalytics
impl Default for LinkedInAggregateAnalyticsTotalResponseAnalytics
Source§fn default() -> LinkedInAggregateAnalyticsTotalResponseAnalytics
fn default() -> LinkedInAggregateAnalyticsTotalResponseAnalytics
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for LinkedInAggregateAnalyticsTotalResponseAnalytics
impl<'de> Deserialize<'de> for LinkedInAggregateAnalyticsTotalResponseAnalytics
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 LinkedInAggregateAnalyticsTotalResponseAnalytics
impl PartialEq for LinkedInAggregateAnalyticsTotalResponseAnalytics
Source§fn eq(&self, other: &LinkedInAggregateAnalyticsTotalResponseAnalytics) -> bool
fn eq(&self, other: &LinkedInAggregateAnalyticsTotalResponseAnalytics) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for LinkedInAggregateAnalyticsTotalResponseAnalytics
Auto Trait Implementations§
impl Freeze for LinkedInAggregateAnalyticsTotalResponseAnalytics
impl RefUnwindSafe for LinkedInAggregateAnalyticsTotalResponseAnalytics
impl Send for LinkedInAggregateAnalyticsTotalResponseAnalytics
impl Sync for LinkedInAggregateAnalyticsTotalResponseAnalytics
impl Unpin for LinkedInAggregateAnalyticsTotalResponseAnalytics
impl UnsafeUnpin for LinkedInAggregateAnalyticsTotalResponseAnalytics
impl UnwindSafe for LinkedInAggregateAnalyticsTotalResponseAnalytics
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