pub enum NoOpportunityReason {
AlreadyCovered,
NotEnoughAttendanceHistory,
}Expand description
Reasons evidence does not indicate a new daycare package opportunity.
Variants§
AlreadyCovered
Existing package or membership already covers the daycare need.
NotEnoughAttendanceHistory
Recent visits are too low to justify a package recommendation.
Trait Implementations§
Source§impl Clone for NoOpportunityReason
impl Clone for NoOpportunityReason
Source§fn clone(&self) -> NoOpportunityReason
fn clone(&self) -> NoOpportunityReason
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 NoOpportunityReason
impl Debug for NoOpportunityReason
Source§impl<'de> Deserialize<'de> for NoOpportunityReason
impl<'de> Deserialize<'de> for NoOpportunityReason
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 NoOpportunityReason
impl PartialEq for NoOpportunityReason
Source§impl Serialize for NoOpportunityReason
impl Serialize for NoOpportunityReason
impl Copy for NoOpportunityReason
impl Eq for NoOpportunityReason
impl StructuralPartialEq for NoOpportunityReason
Auto Trait Implementations§
impl Freeze for NoOpportunityReason
impl RefUnwindSafe for NoOpportunityReason
impl Send for NoOpportunityReason
impl Sync for NoOpportunityReason
impl Unpin for NoOpportunityReason
impl UnsafeUnpin for NoOpportunityReason
impl UnwindSafe for NoOpportunityReason
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