pub struct AnalyticsOverview {
pub total_posts: Option<i32>,
pub published_posts: Option<i32>,
pub scheduled_posts: Option<i32>,
pub last_sync: Option<String>,
pub data_staleness: Option<Box<AnalyticsOverviewDataStaleness>>,
}Fields§
§total_posts: Option<i32>§published_posts: Option<i32>§scheduled_posts: Option<i32>§last_sync: Option<String>§data_staleness: Option<Box<AnalyticsOverviewDataStaleness>>Implementations§
Source§impl AnalyticsOverview
impl AnalyticsOverview
pub fn new() -> AnalyticsOverview
Trait Implementations§
Source§impl Clone for AnalyticsOverview
impl Clone for AnalyticsOverview
Source§fn clone(&self) -> AnalyticsOverview
fn clone(&self) -> AnalyticsOverview
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 AnalyticsOverview
impl Debug for AnalyticsOverview
Source§impl Default for AnalyticsOverview
impl Default for AnalyticsOverview
Source§fn default() -> AnalyticsOverview
fn default() -> AnalyticsOverview
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AnalyticsOverview
impl<'de> Deserialize<'de> for AnalyticsOverview
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 AnalyticsOverview
impl PartialEq for AnalyticsOverview
Source§fn eq(&self, other: &AnalyticsOverview) -> bool
fn eq(&self, other: &AnalyticsOverview) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for AnalyticsOverview
impl Serialize for AnalyticsOverview
impl StructuralPartialEq for AnalyticsOverview
Auto Trait Implementations§
impl Freeze for AnalyticsOverview
impl RefUnwindSafe for AnalyticsOverview
impl Send for AnalyticsOverview
impl Sync for AnalyticsOverview
impl Unpin for AnalyticsOverview
impl UnsafeUnpin for AnalyticsOverview
impl UnwindSafe for AnalyticsOverview
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