pub struct AnalyticsListResponse {
pub overview: Option<Box<AnalyticsOverview>>,
pub posts: Option<Vec<AnalyticsListResponsePostsInner>>,
pub pagination: Option<Box<Pagination>>,
pub accounts: Option<Vec<SocialAccount>>,
pub has_analytics_access: Option<bool>,
}Fields§
§overview: Option<Box<AnalyticsOverview>>§posts: Option<Vec<AnalyticsListResponsePostsInner>>§pagination: Option<Box<Pagination>>§accounts: Option<Vec<SocialAccount>>Connected social accounts (followerCount and followersLastUpdated only included if user has analytics add-on)
has_analytics_access: Option<bool>Whether user has analytics add-on access
Implementations§
Source§impl AnalyticsListResponse
impl AnalyticsListResponse
pub fn new() -> AnalyticsListResponse
Trait Implementations§
Source§impl Clone for AnalyticsListResponse
impl Clone for AnalyticsListResponse
Source§fn clone(&self) -> AnalyticsListResponse
fn clone(&self) -> AnalyticsListResponse
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 Debug for AnalyticsListResponse
impl Debug for AnalyticsListResponse
Source§impl Default for AnalyticsListResponse
impl Default for AnalyticsListResponse
Source§fn default() -> AnalyticsListResponse
fn default() -> AnalyticsListResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AnalyticsListResponse
impl<'de> Deserialize<'de> for AnalyticsListResponse
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 AnalyticsListResponse
impl PartialEq for AnalyticsListResponse
Source§fn eq(&self, other: &AnalyticsListResponse) -> bool
fn eq(&self, other: &AnalyticsListResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for AnalyticsListResponse
impl Serialize for AnalyticsListResponse
impl StructuralPartialEq for AnalyticsListResponse
Auto Trait Implementations§
impl Freeze for AnalyticsListResponse
impl RefUnwindSafe for AnalyticsListResponse
impl Send for AnalyticsListResponse
impl Sync for AnalyticsListResponse
impl Unpin for AnalyticsListResponse
impl UnsafeUnpin for AnalyticsListResponse
impl UnwindSafe for AnalyticsListResponse
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