pub enum HistoryRequirement {
KeepServiceNotes,
KeepStyleNotesAndPhotos,
KeepMedicalHandlingNotes,
}Expand description
Service-history retention requirement that protects rebooking quality and safe handling across visits.
Variants§
KeepServiceNotes
Preserve service notes so future estimates can cite source history rather than invent timing.
KeepStyleNotesAndPhotos
Preserve style notes/photos so groomers can reproduce customer preferences at the next cadence.
KeepMedicalHandlingNotes
Preserve medical or handling notes and route sensitive interpretation through care review.
Trait Implementations§
Source§impl Clone for HistoryRequirement
impl Clone for HistoryRequirement
Source§fn clone(&self) -> HistoryRequirement
fn clone(&self) -> HistoryRequirement
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 HistoryRequirement
impl Debug for HistoryRequirement
Source§impl<'de> Deserialize<'de> for HistoryRequirement
impl<'de> Deserialize<'de> for HistoryRequirement
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 HistoryRequirement
impl PartialEq for HistoryRequirement
Source§impl Serialize for HistoryRequirement
impl Serialize for HistoryRequirement
impl Copy for HistoryRequirement
impl Eq for HistoryRequirement
impl StructuralPartialEq for HistoryRequirement
Auto Trait Implementations§
impl Freeze for HistoryRequirement
impl RefUnwindSafe for HistoryRequirement
impl Send for HistoryRequirement
impl Sync for HistoryRequirement
impl Unpin for HistoryRequirement
impl UnsafeUnpin for HistoryRequirement
impl UnwindSafe for HistoryRequirement
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