pub enum DaycareFormat {
AllDayPlay,
HalfDayPlay,
DayBoarding,
DayPlayPlusRoom,
CatIndividualPlaytime,
}Expand description
Daycare format whose eligibility and supervision needs affect staffing.
Variants§
AllDayPlay
All day play operations signal for labor, capacity, or task planning.
HalfDayPlay
Half day play operations signal for labor, capacity, or task planning.
DayBoarding
Daytime boarding care with lodging-style supervision.
DayPlayPlusRoom
Day play plus room operations signal for labor, capacity, or task planning.
CatIndividualPlaytime
Cat individual playtime operations signal for labor, capacity, or task planning.
Trait Implementations§
Source§impl Clone for DaycareFormat
impl Clone for DaycareFormat
Source§fn clone(&self) -> DaycareFormat
fn clone(&self) -> DaycareFormat
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 DaycareFormat
impl Debug for DaycareFormat
Source§impl<'de> Deserialize<'de> for DaycareFormat
impl<'de> Deserialize<'de> for DaycareFormat
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 DaycareFormat
impl PartialEq for DaycareFormat
Source§impl Serialize for DaycareFormat
impl Serialize for DaycareFormat
impl Copy for DaycareFormat
impl Eq for DaycareFormat
impl StructuralPartialEq for DaycareFormat
Auto Trait Implementations§
impl Freeze for DaycareFormat
impl RefUnwindSafe for DaycareFormat
impl Send for DaycareFormat
impl Sync for DaycareFormat
impl Unpin for DaycareFormat
impl UnsafeUnpin for DaycareFormat
impl UnwindSafe for DaycareFormat
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