pub enum ServiceCode {
MiniGroom,
FullGroom,
ExitBath,
FullBath,
PremiumBath,
NailTrim,
NailDremel,
EarCleaning,
CoatSkinSpecificProduct,
FirstTimeGroomingOffer,
}Expand description
Storage-facing grooming service code used by service-offering records.
Variants§
MiniGroom
Stable storage code for mini groom.
FullGroom
Stable storage code for full groom.
ExitBath
Stable storage code for exit bath.
FullBath
Stable storage code for full bath.
PremiumBath
Stable storage code for premium bath.
NailTrim
Stable storage code for nail trim.
NailDremel
Stable storage code for nail dremel.
EarCleaning
Stable storage code for ear cleaning.
CoatSkinSpecificProduct
Stable storage code for coat skin specific product.
FirstTimeGroomingOffer
Stable storage code for first time grooming offer.
Trait Implementations§
Source§impl Clone for ServiceCode
impl Clone for ServiceCode
Source§fn clone(&self) -> ServiceCode
fn clone(&self) -> ServiceCode
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 ServiceCode
impl Debug for ServiceCode
Source§impl<'de> Deserialize<'de> for ServiceCode
impl<'de> Deserialize<'de> for ServiceCode
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 From<Service> for ServiceCode
impl From<Service> for ServiceCode
Source§impl From<ServiceCode> for Service
impl From<ServiceCode> for Service
Source§fn from(value: ServiceCode) -> Self
fn from(value: ServiceCode) -> Self
Converts to this type from the input type.
Source§impl PartialEq for ServiceCode
impl PartialEq for ServiceCode
Source§impl Serialize for ServiceCode
impl Serialize for ServiceCode
impl Copy for ServiceCode
impl Eq for ServiceCode
impl StructuralPartialEq for ServiceCode
Auto Trait Implementations§
impl Freeze for ServiceCode
impl RefUnwindSafe for ServiceCode
impl Send for ServiceCode
impl Sync for ServiceCode
impl Unpin for ServiceCode
impl UnsafeUnpin for ServiceCode
impl UnwindSafe for ServiceCode
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