pub enum ReferrerKind {
Direct,
Organic,
Paid,
Social,
Email,
Referral,
Unknown,
}Expand description
Referrer classification label.
Variants§
Direct
Direct traffic.
Organic
Organic search traffic.
Paid
Paid traffic.
Social
Social traffic.
Email traffic.
Referral
Referral traffic.
Unknown
Unknown traffic.
Trait Implementations§
Source§impl Clone for ReferrerKind
impl Clone for ReferrerKind
Source§fn clone(&self) -> ReferrerKind
fn clone(&self) -> ReferrerKind
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 ReferrerKind
impl Debug for ReferrerKind
Source§impl Hash for ReferrerKind
impl Hash for ReferrerKind
Source§impl Ord for ReferrerKind
impl Ord for ReferrerKind
Source§fn cmp(&self, other: &ReferrerKind) -> Ordering
fn cmp(&self, other: &ReferrerKind) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for ReferrerKind
impl PartialEq for ReferrerKind
Source§fn eq(&self, other: &ReferrerKind) -> bool
fn eq(&self, other: &ReferrerKind) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for ReferrerKind
impl PartialOrd for ReferrerKind
impl Copy for ReferrerKind
impl Eq for ReferrerKind
impl StructuralPartialEq for ReferrerKind
Auto Trait Implementations§
impl Freeze for ReferrerKind
impl RefUnwindSafe for ReferrerKind
impl Send for ReferrerKind
impl Sync for ReferrerKind
impl Unpin for ReferrerKind
impl UnsafeUnpin for ReferrerKind
impl UnwindSafe for ReferrerKind
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