pub struct AdminAnalyticsOverviewResponse {
pub range: Option<AdminAnalyticsOverviewResponseRange>,
pub totals: Option<AdminAnalyticsOverviewResponseTotals>,
pub unique_visitors_30d: Option<i64>,
pub signups_30d: Option<i64>,
pub conversion_rate: Option<f64>,
pub timeseries: Option<Vec<Map<String, Value>>>,
pub top_countries: Option<Vec<Map<String, Value>>>,
pub top_devices: Option<Vec<Map<String, Value>>>,
pub top_browsers: Option<Vec<Map<String, Value>>>,
pub top_referrers: Option<Vec<Map<String, Value>>>,
pub top_utm_sources: Option<Vec<Map<String, Value>>>,
}Expand description
AdminAnalyticsOverviewResponse model.
Fields§
§range: Option<AdminAnalyticsOverviewResponseRange>§totals: Option<AdminAnalyticsOverviewResponseTotals>§unique_visitors_30d: Option<i64>§signups_30d: Option<i64>§conversion_rate: Option<f64>§timeseries: Option<Vec<Map<String, Value>>>§top_countries: Option<Vec<Map<String, Value>>>§top_devices: Option<Vec<Map<String, Value>>>§top_browsers: Option<Vec<Map<String, Value>>>§top_referrers: Option<Vec<Map<String, Value>>>§top_utm_sources: Option<Vec<Map<String, Value>>>Trait Implementations§
Source§impl Clone for AdminAnalyticsOverviewResponse
impl Clone for AdminAnalyticsOverviewResponse
Source§fn clone(&self) -> AdminAnalyticsOverviewResponse
fn clone(&self) -> AdminAnalyticsOverviewResponse
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 AdminAnalyticsOverviewResponse
impl Default for AdminAnalyticsOverviewResponse
Source§fn default() -> AdminAnalyticsOverviewResponse
fn default() -> AdminAnalyticsOverviewResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AdminAnalyticsOverviewResponse
impl<'de> Deserialize<'de> for AdminAnalyticsOverviewResponse
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 StructuralPartialEq for AdminAnalyticsOverviewResponse
Auto Trait Implementations§
impl Freeze for AdminAnalyticsOverviewResponse
impl RefUnwindSafe for AdminAnalyticsOverviewResponse
impl Send for AdminAnalyticsOverviewResponse
impl Sync for AdminAnalyticsOverviewResponse
impl Unpin for AdminAnalyticsOverviewResponse
impl UnsafeUnpin for AdminAnalyticsOverviewResponse
impl UnwindSafe for AdminAnalyticsOverviewResponse
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