pub enum CareFeatureCode {
DailyHousekeeping,
PottyWalks,
Bedding,
PawgressReport,
FeedingSupport,
MedicationSupport,
}Expand description
Storage-facing boarding included-care feature code.
Variants§
DailyHousekeeping
Stable storage code for daily housekeeping.
PottyWalks
Stable storage code for potty walks.
Bedding
Stable storage code for bedding.
PawgressReport
Stable storage code for pawgress report.
FeedingSupport
Stable storage code for feeding support.
MedicationSupport
Stable storage code for medication support.
Trait Implementations§
Source§impl Clone for CareFeatureCode
impl Clone for CareFeatureCode
Source§fn clone(&self) -> CareFeatureCode
fn clone(&self) -> CareFeatureCode
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 CareFeatureCode
impl Debug for CareFeatureCode
Source§impl<'de> Deserialize<'de> for CareFeatureCode
impl<'de> Deserialize<'de> for CareFeatureCode
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 From<CareFeature> for CareFeatureCode
impl From<CareFeature> for CareFeatureCode
Source§fn from(value: CareFeature) -> Self
fn from(value: CareFeature) -> Self
Converts to this type from the input type.
Source§impl From<CareFeatureCode> for CareFeature
impl From<CareFeatureCode> for CareFeature
Source§fn from(value: CareFeatureCode) -> Self
fn from(value: CareFeatureCode) -> Self
Converts to this type from the input type.
Source§impl PartialEq for CareFeatureCode
impl PartialEq for CareFeatureCode
Source§impl Serialize for CareFeatureCode
impl Serialize for CareFeatureCode
impl Copy for CareFeatureCode
impl Eq for CareFeatureCode
impl StructuralPartialEq for CareFeatureCode
Auto Trait Implementations§
impl Freeze for CareFeatureCode
impl RefUnwindSafe for CareFeatureCode
impl Send for CareFeatureCode
impl Sync for CareFeatureCode
impl Unpin for CareFeatureCode
impl UnsafeUnpin for CareFeatureCode
impl UnwindSafe for CareFeatureCode
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