pub struct Evidence {
pub pet_id: PetId,
pub species: Species,
pub service: ServiceVariant,
pub temperament: TemperamentAssessmentFreshness,
pub vaccines: VaccineReadiness,
pub spay_neuter: SpayNeuterStatus,
pub incident: Restriction,
pub staff_coverage: Decision,
}Expand description
Source-derived evidence used to decide whether a pet may enter daycare group play.
Fields§
§pet_id: PetIdPet whose daycare eligibility is being evaluated.
species: SpeciesPet species used to prevent group-play rules from applying to unsupported care modes.
service: ServiceVariantRequested service that drives scheduling and labor estimates.
temperament: TemperamentAssessmentFreshnessFreshness of temperament assessment required for safe group assignment.
vaccines: VaccineReadinessVaccine proof readiness from source records or staff review.
spay_neuter: SpayNeuterStatusSpay/neuter status used for group-play policy review.
incident: RestrictionActive incident restriction that may suspend group play.
staff_coverage: DecisionCurrent staffing coverage decision used before admitting a pet to group play.
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Evidence
impl<'de> Deserialize<'de> for Evidence
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 Evidence
impl StructuralPartialEq for Evidence
Auto Trait Implementations§
impl Freeze for Evidence
impl RefUnwindSafe for Evidence
impl Send for Evidence
impl Sync for Evidence
impl Unpin for Evidence
impl UnsafeUnpin for Evidence
impl UnwindSafe for Evidence
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