Enum CampaignChannel
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§
§impl CampaignChannel
impl CampaignChannel
Trait Implementations§
§impl Clone for CampaignChannel
impl Clone for CampaignChannel
§fn clone(&self) -> CampaignChannel
fn clone(&self) -> CampaignChannel
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 more§impl Debug for CampaignChannel
impl Debug for CampaignChannel
§impl Hash for CampaignChannel
impl Hash for CampaignChannel
§impl Ord for CampaignChannel
impl Ord for CampaignChannel
§impl PartialEq for CampaignChannel
impl PartialEq for CampaignChannel
§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