pub enum ServiceLine {
Boarding,
Daycare,
Grooming,
Training,
Retail,
}Expand description
Core pet-resort service line used to partition demand, capacity, and labor metrics.
Variants§
Boarding
Overnight stay service line.
Daycare
Daycare operations signal for labor, capacity, or task planning.
Grooming
Grooming service line or care-note category.
Training
Training service line or care-note category.
Retail
Retail operations signal for labor, capacity, or task planning.
Trait Implementations§
Source§impl Clone for ServiceLine
impl Clone for ServiceLine
Source§fn clone(&self) -> ServiceLine
fn clone(&self) -> ServiceLine
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 ServiceLine
impl Debug for ServiceLine
Source§impl<'de> Deserialize<'de> for ServiceLine
impl<'de> Deserialize<'de> for ServiceLine
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 Hash for ServiceLine
impl Hash for ServiceLine
Source§impl Ord for ServiceLine
impl Ord for ServiceLine
Source§fn cmp(&self, other: &ServiceLine) -> Ordering
fn cmp(&self, other: &ServiceLine) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for ServiceLine
impl PartialEq for ServiceLine
Source§impl PartialOrd for ServiceLine
impl PartialOrd for ServiceLine
Source§impl Serialize for ServiceLine
impl Serialize for ServiceLine
impl Copy for ServiceLine
impl Eq for ServiceLine
impl StructuralPartialEq for ServiceLine
Auto Trait Implementations§
impl Freeze for ServiceLine
impl RefUnwindSafe for ServiceLine
impl Send for ServiceLine
impl Sync for ServiceLine
impl Unpin for ServiceLine
impl UnsafeUnpin for ServiceLine
impl UnwindSafe for ServiceLine
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