pub enum FollowUpEligibility {
Eligible {
reason: EligibilityReason,
},
Ineligible {
reason: IneligibilityReason,
},
}Expand description
Outcome of the deterministic contact-safety check for retention follow-up.
Variants§
Eligible
Source-derived Reason retained for audit, reviewer explanation, or agent context; callers must not invent or mutate it.
Fields
§
reason: EligibilityReasonReason carried by this variant.
Ineligible
Source-derived Reason retained for audit, reviewer explanation, or agent context; callers must not invent or mutate it.
Fields
§
reason: IneligibilityReasonReason carried by this variant.
Trait Implementations§
Source§impl Clone for FollowUpEligibility
impl Clone for FollowUpEligibility
Source§fn clone(&self) -> FollowUpEligibility
fn clone(&self) -> FollowUpEligibility
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 FollowUpEligibility
impl Debug for FollowUpEligibility
Source§impl<'de> Deserialize<'de> for FollowUpEligibility
impl<'de> Deserialize<'de> for FollowUpEligibility
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 FollowUpEligibility
impl PartialEq for FollowUpEligibility
Source§impl Serialize for FollowUpEligibility
impl Serialize for FollowUpEligibility
impl Copy for FollowUpEligibility
impl Eq for FollowUpEligibility
impl StructuralPartialEq for FollowUpEligibility
Auto Trait Implementations§
impl Freeze for FollowUpEligibility
impl RefUnwindSafe for FollowUpEligibility
impl Send for FollowUpEligibility
impl Sync for FollowUpEligibility
impl Unpin for FollowUpEligibility
impl UnsafeUnpin for FollowUpEligibility
impl UnwindSafe for FollowUpEligibility
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