pub struct PetCareWatch {
pub pet_id: PetId,
pub reason: PetCareWatchReason,
}Expand description
Pet care/safety watch item that protects staff handoff and manager review.
Fields§
§pet_id: PetIdPet receiving the grooming or care service.
reason: PetCareWatchReasonBusiness reason staff should review before proceeding.
Trait Implementations§
Source§impl Clone for PetCareWatch
impl Clone for PetCareWatch
Source§fn clone(&self) -> PetCareWatch
fn clone(&self) -> PetCareWatch
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 PetCareWatch
impl Debug for PetCareWatch
Source§impl<'de> Deserialize<'de> for PetCareWatch
impl<'de> Deserialize<'de> for PetCareWatch
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 PetCareWatch
impl PartialEq for PetCareWatch
Source§impl Serialize for PetCareWatch
impl Serialize for PetCareWatch
impl Eq for PetCareWatch
impl StructuralPartialEq for PetCareWatch
Auto Trait Implementations§
impl Freeze for PetCareWatch
impl RefUnwindSafe for PetCareWatch
impl Send for PetCareWatch
impl Sync for PetCareWatch
impl Unpin for PetCareWatch
impl UnsafeUnpin for PetCareWatch
impl UnwindSafe for PetCareWatch
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