pub struct ReferrerType {
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 referrer_type: i64,
pub idsubdatatable: Option<i64>,
}Expand description
Referrers.getReferrerType row. Note the field is referrer_type here.
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>§referrer_type: i64§idsubdatatable: Option<i64>Trait Implementations§
Source§impl Clone for ReferrerType
impl Clone for ReferrerType
Source§fn clone(&self) -> ReferrerType
fn clone(&self) -> ReferrerType
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 ReferrerType
impl Debug for ReferrerType
Source§impl<'de> Deserialize<'de> for ReferrerType
impl<'de> Deserialize<'de> for ReferrerType
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 ReferrerType
impl RefUnwindSafe for ReferrerType
impl Send for ReferrerType
impl Sync for ReferrerType
impl Unpin for ReferrerType
impl UnsafeUnpin for ReferrerType
impl UnwindSafe for ReferrerType
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