pub enum ServiceOutcome {
Completed,
NoShow,
LateCancelled,
NeedsFollowUp,
}Expand description
Service outcome recorded for grooming history, estimates, and rebooking prompts.
Variants§
Completed
Staff can see the completed grooming state during grooming scheduling, estimate, history, rebooking, reminder, or review work.
NoShow
Staff can see the no show grooming state during grooming scheduling, estimate, history, rebooking, reminder, or review work.
LateCancelled
Staff can see the late cancelled grooming state during grooming scheduling, estimate, history, rebooking, reminder, or review work.
NeedsFollowUp
Staff can see the needs follow up grooming state during grooming scheduling, estimate, history, rebooking, reminder, or review work.
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