pub enum ReviewReason {
MissingCurrentTemperamentAssessment,
VaccineProofRequiresReview,
SpayNeuterStatusRequiresReview,
StaffCoverageRequiresReview,
}Expand description
Reasons daycare group-play eligibility requires staff review.
Variants§
MissingCurrentTemperamentAssessment
Temperament assessment is missing or stale and requires behavior review.
VaccineProofRequiresReview
Vaccine proof is missing or uncertain and requires medical-document review.
SpayNeuterStatusRequiresReview
Spay/neuter status requires staff review before group play.
StaffCoverageRequiresReview
Staffing coverage is insufficient or unknown for safe group play.
Trait Implementations§
Source§impl Clone for ReviewReason
impl Clone for ReviewReason
Source§fn clone(&self) -> ReviewReason
fn clone(&self) -> ReviewReason
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 ReviewReason
impl Debug for ReviewReason
Source§impl<'de> Deserialize<'de> for ReviewReason
impl<'de> Deserialize<'de> for ReviewReason
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 ReviewReason
impl PartialEq for ReviewReason
Source§impl Serialize for ReviewReason
impl Serialize for ReviewReason
impl Copy for ReviewReason
impl Eq for ReviewReason
impl StructuralPartialEq for ReviewReason
Auto Trait Implementations§
impl Freeze for ReviewReason
impl RefUnwindSafe for ReviewReason
impl Send for ReviewReason
impl Sync for ReviewReason
impl Unpin for ReviewReason
impl UnsafeUnpin for ReviewReason
impl UnwindSafe for ReviewReason
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