pub enum Source {
WebsiteForm,
Phone,
Sms,
Email,
SocialMedia,
LocalReferral {
source_name: SourceName,
},
Campaign {
name: CampaignName,
},
}Expand description
Domain vocabulary for source decisions in lead workflows.
Variants§
WebsiteForm
Website form sales lead state, source, or follow-up signal.
Phone
Phone sales lead state, source, or follow-up signal.
Sms
Sms sales lead state, source, or follow-up signal.
Email sales lead state, source, or follow-up signal.
SocialMedia
Social media sales lead state, source, or follow-up signal.
LocalReferral
Source name fact promoted into this lead contract.
Fields
§
source_name: SourceNameSource name carried by this variant.
Campaign
Contact or display name used by staff.
Fields
§
name: CampaignNameName carried by this variant.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Source
impl<'de> Deserialize<'de> for Source
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
impl Eq for Source
impl StructuralPartialEq for Source
Auto Trait Implementations§
impl Freeze for Source
impl RefUnwindSafe for Source
impl Send for Source
impl Sync for Source
impl Unpin for Source
impl UnsafeUnpin for Source
impl UnwindSafe for Source
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