pub struct DashboardSummary {Show 15 fields
pub total_pageviews: i64,
pub unique_sessions: i64,
pub pageviews_change: f64,
pub sessions_change: f64,
pub avg_response_time_ms: i64,
pub error_rate: f64,
pub top_pages: Vec<PageStats>,
pub top_referrers: Vec<ReferrerStats>,
pub devices: HashMap<String, i64>,
pub browsers: HashMap<String, i64>,
pub total_devices: i64,
pub total_browsers: i64,
pub countries: Vec<CountryStats>,
pub pageviews_over_time: Vec<TimeSeriesPoint>,
pub pageviews_max: i64,
}Fields§
§total_pageviews: i64§unique_sessions: i64§pageviews_change: f64§sessions_change: f64§avg_response_time_ms: i64§error_rate: f64§top_pages: Vec<PageStats>§top_referrers: Vec<ReferrerStats>§devices: HashMap<String, i64>§browsers: HashMap<String, i64>§total_devices: i64§total_browsers: i64§countries: Vec<CountryStats>§pageviews_over_time: Vec<TimeSeriesPoint>§pageviews_max: i64Trait Implementations§
Source§impl Clone for DashboardSummary
impl Clone for DashboardSummary
Source§fn clone(&self) -> DashboardSummary
fn clone(&self) -> DashboardSummary
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 DashboardSummary
impl Debug for DashboardSummary
Auto Trait Implementations§
impl Freeze for DashboardSummary
impl RefUnwindSafe for DashboardSummary
impl Send for DashboardSummary
impl Sync for DashboardSummary
impl Unpin for DashboardSummary
impl UnsafeUnpin for DashboardSummary
impl UnwindSafe for DashboardSummary
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more