pub enum CareFeature {
DailyHousekeeping,
PottyWalks,
Bedding,
PawgressReport,
FeedingSupport,
MedicationSupport,
}Expand description
Domain vocabulary for care feature decisions in operations workflows.
Variants§
DailyHousekeeping
Daily housekeeping operations signal for labor, capacity, or task planning.
PottyWalks
Potty walks operations signal for labor, capacity, or task planning.
Bedding
Bedding operations signal for labor, capacity, or task planning.
PawgressReport
Progress report shared with the customer during care.
FeedingSupport
Feeding support operations signal for labor, capacity, or task planning.
MedicationSupport
Medication support operations signal for labor, capacity, or task planning.
Trait Implementations§
Source§impl Clone for CareFeature
impl Clone for CareFeature
Source§fn clone(&self) -> CareFeature
fn clone(&self) -> CareFeature
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 CareFeature
impl Debug for CareFeature
Source§impl<'de> Deserialize<'de> for CareFeature
impl<'de> Deserialize<'de> for CareFeature
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 CareFeature
impl PartialEq for CareFeature
Source§impl Serialize for CareFeature
impl Serialize for CareFeature
impl Copy for CareFeature
impl Eq for CareFeature
impl StructuralPartialEq for CareFeature
Auto Trait Implementations§
impl Freeze for CareFeature
impl RefUnwindSafe for CareFeature
impl Send for CareFeature
impl Sync for CareFeature
impl Unpin for CareFeature
impl UnsafeUnpin for CareFeature
impl UnwindSafe for CareFeature
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