pub enum NextAction {
DraftReply,
RequestMissingPetProfile,
RequestVaccineProof,
OfferReservationTimes,
RouteToHuman {
reason: Observation,
},
NoAction,
}Expand description
Human-safe next step for converting a lead without overpromising capacity or policy.
Variants§
DraftReply
Draft reply sales lead state, source, or follow-up signal.
RequestMissingPetProfile
Request missing pet profile sales lead state, source, or follow-up signal.
RequestVaccineProof
Request vaccine proof sales lead state, source, or follow-up signal.
OfferReservationTimes
Offer reservation times sales lead state, source, or follow-up signal.
RouteToHuman
Route to human sales lead state, source, or follow-up signal.
Fields
§
reason: ObservationBusiness reason staff should review before proceeding.
NoAction
No action sales lead state, source, or follow-up signal.
Trait Implementations§
Source§impl Clone for NextAction
impl Clone for NextAction
Source§fn clone(&self) -> NextAction
fn clone(&self) -> NextAction
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 moreSource§impl Debug for NextAction
impl Debug for NextAction
Source§impl<'de> Deserialize<'de> for NextAction
impl<'de> Deserialize<'de> for NextAction
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
Source§impl PartialEq for NextAction
impl PartialEq for NextAction
Source§impl Serialize for NextAction
impl Serialize for NextAction
impl Eq for NextAction
impl StructuralPartialEq for NextAction
Auto Trait Implementations§
impl Freeze for NextAction
impl RefUnwindSafe for NextAction
impl Send for NextAction
impl Sync for NextAction
impl Unpin for NextAction
impl UnsafeUnpin for NextAction
impl UnwindSafe for NextAction
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