pub enum CampaignChannel {
OrganicSearch,
PaidSearch,
Social,
Email,
Referral,
Direct,
Display,
Other(String),
}Expand description
Generic campaign channel label.
Variants§
OrganicSearch
Organic search channel.
PaidSearch
Paid search channel.
Social
Social channel.
Email channel.
Referral
Referral channel.
Direct
Direct channel.
Display
Display channel.
Other(String)
Other custom channel label.
Implementations§
Trait Implementations§
Source§impl Clone for CampaignChannel
impl Clone for CampaignChannel
Source§fn clone(&self) -> CampaignChannel
fn clone(&self) -> CampaignChannel
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 CampaignChannel
impl Debug for CampaignChannel
Source§impl Hash for CampaignChannel
impl Hash for CampaignChannel
Source§impl Ord for CampaignChannel
impl Ord for CampaignChannel
Source§fn cmp(&self, other: &CampaignChannel) -> Ordering
fn cmp(&self, other: &CampaignChannel) -> 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 CampaignChannel
impl PartialEq for CampaignChannel
Source§fn eq(&self, other: &CampaignChannel) -> bool
fn eq(&self, other: &CampaignChannel) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for CampaignChannel
impl PartialOrd for CampaignChannel
impl Eq for CampaignChannel
impl StructuralPartialEq for CampaignChannel
Auto Trait Implementations§
impl Freeze for CampaignChannel
impl RefUnwindSafe for CampaignChannel
impl Send for CampaignChannel
impl Sync for CampaignChannel
impl Unpin for CampaignChannel
impl UnsafeUnpin for CampaignChannel
impl UnwindSafe for CampaignChannel
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