pub enum BreedCategory {
ShortCoat,
DoubleCoat,
Doodle,
Cat,
}Expand description
Breed and coat groupings used to estimate grooming labor time.
Variants§
ShortCoat
Short-coat category with lower expected grooming labor when no history indicates otherwise.
DoubleCoat
Double-coat category that may require extra drying/deshedding time.
Doodle
Doodle or similar coat category where matting/style history often changes the estimate.
Cat
Cat guest, using cat-specific policy and accommodation rules.
Trait Implementations§
Source§impl Clone for BreedCategory
impl Clone for BreedCategory
Source§fn clone(&self) -> BreedCategory
fn clone(&self) -> BreedCategory
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 BreedCategory
impl Debug for BreedCategory
Source§impl<'de> Deserialize<'de> for BreedCategory
impl<'de> Deserialize<'de> for BreedCategory
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 BreedCategory
impl PartialEq for BreedCategory
Source§impl Serialize for BreedCategory
impl Serialize for BreedCategory
impl Copy for BreedCategory
impl Eq for BreedCategory
impl StructuralPartialEq for BreedCategory
Auto Trait Implementations§
impl Freeze for BreedCategory
impl RefUnwindSafe for BreedCategory
impl Send for BreedCategory
impl Sync for BreedCategory
impl Unpin for BreedCategory
impl UnsafeUnpin for BreedCategory
impl UnwindSafe for BreedCategory
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