pub struct ReferrerAll {
pub label: String,
pub nb_visits: i64,
pub nb_actions: i64,
pub max_actions: i64,
pub sum_visit_length: i64,
pub bounce_count: i64,
pub nb_visits_converted: i64,
pub sum_daily_nb_uniq_visitors: i64,
pub sum_daily_nb_users: i64,
pub segment: Option<String>,
pub referer_type: i64,
}Expand description
Referrers.getAll row. Note Matomo’s misspelled referer_type field.
Fields§
§label: String§nb_visits: i64§nb_actions: i64§max_actions: i64§sum_visit_length: i64§bounce_count: i64§nb_visits_converted: i64§sum_daily_nb_uniq_visitors: i64§sum_daily_nb_users: i64§segment: Option<String>§referer_type: i64Trait Implementations§
Source§impl Clone for ReferrerAll
impl Clone for ReferrerAll
Source§fn clone(&self) -> ReferrerAll
fn clone(&self) -> ReferrerAll
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 ReferrerAll
impl Debug for ReferrerAll
Source§impl<'de> Deserialize<'de> for ReferrerAll
impl<'de> Deserialize<'de> for ReferrerAll
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
Auto Trait Implementations§
impl Freeze for ReferrerAll
impl RefUnwindSafe for ReferrerAll
impl Send for ReferrerAll
impl Sync for ReferrerAll
impl Unpin for ReferrerAll
impl UnsafeUnpin for ReferrerAll
impl UnwindSafe for ReferrerAll
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