pub struct RealtimeVisitorsResponse {
pub visitors: i64,
pub pageviews: Option<i64>,
pub bounce_rate: Option<f64>,
pub visit_duration: Option<f64>,
}Expand description
Response payload for realtime visitors.
Fields§
§visitors: i64§pageviews: Option<i64>§bounce_rate: Option<f64>§visit_duration: Option<f64>Trait Implementations§
Source§impl Clone for RealtimeVisitorsResponse
impl Clone for RealtimeVisitorsResponse
Source§fn clone(&self) -> RealtimeVisitorsResponse
fn clone(&self) -> RealtimeVisitorsResponse
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 RealtimeVisitorsResponse
impl Debug for RealtimeVisitorsResponse
Source§impl Default for RealtimeVisitorsResponse
impl Default for RealtimeVisitorsResponse
Source§fn default() -> RealtimeVisitorsResponse
fn default() -> RealtimeVisitorsResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RealtimeVisitorsResponse
impl<'de> Deserialize<'de> for RealtimeVisitorsResponse
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 RealtimeVisitorsResponse
impl PartialEq for RealtimeVisitorsResponse
Source§impl Serialize for RealtimeVisitorsResponse
impl Serialize for RealtimeVisitorsResponse
impl StructuralPartialEq for RealtimeVisitorsResponse
Auto Trait Implementations§
impl Freeze for RealtimeVisitorsResponse
impl RefUnwindSafe for RealtimeVisitorsResponse
impl Send for RealtimeVisitorsResponse
impl Sync for RealtimeVisitorsResponse
impl Unpin for RealtimeVisitorsResponse
impl UnwindSafe for RealtimeVisitorsResponse
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