pub enum ServiceOutcome {
Completed,
NoShow,
LateCancelled,
NeedsFollowUp,
}Expand description
Decision vocabulary for service outcome in grooming workflows.
Variants§
Completed
Completed grooming operational signal for schedule, estimate, history, or review handling.
NoShow
No show grooming operational signal for schedule, estimate, history, or review handling.
LateCancelled
Late cancelled grooming operational signal for schedule, estimate, history, or review handling.
NeedsFollowUp
Needs follow up grooming operational signal for schedule, estimate, history, or review handling.
Trait Implementations§
Source§impl Clone for ServiceOutcome
impl Clone for ServiceOutcome
Source§fn clone(&self) -> ServiceOutcome
fn clone(&self) -> ServiceOutcome
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 ServiceOutcome
impl Debug for ServiceOutcome
Source§impl<'de> Deserialize<'de> for ServiceOutcome
impl<'de> Deserialize<'de> for ServiceOutcome
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 ServiceOutcome
impl PartialEq for ServiceOutcome
Source§impl Serialize for ServiceOutcome
impl Serialize for ServiceOutcome
impl Copy for ServiceOutcome
impl Eq for ServiceOutcome
impl StructuralPartialEq for ServiceOutcome
Auto Trait Implementations§
impl Freeze for ServiceOutcome
impl RefUnwindSafe for ServiceOutcome
impl Send for ServiceOutcome
impl Sync for ServiceOutcome
impl Unpin for ServiceOutcome
impl UnsafeUnpin for ServiceOutcome
impl UnwindSafe for ServiceOutcome
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