pub enum GroupAssignmentRule {
TemperamentAndSizeMatched,
IndividualPlayOnly,
SeniorOrLowEnergyGroup,
}Expand description
Rule used to choose or restrict daycare group assignment.
Variants§
TemperamentAndSizeMatched
Assign pets only to groups matched by temperament and size evidence.
IndividualPlayOnly
Restrict the pet to individual play instead of group assignment.
SeniorOrLowEnergyGroup
Route the pet to a calmer group suited to senior or low-energy needs.
Trait Implementations§
Source§impl Clone for GroupAssignmentRule
impl Clone for GroupAssignmentRule
Source§fn clone(&self) -> GroupAssignmentRule
fn clone(&self) -> GroupAssignmentRule
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 GroupAssignmentRule
impl Debug for GroupAssignmentRule
Source§impl<'de> Deserialize<'de> for GroupAssignmentRule
impl<'de> Deserialize<'de> for GroupAssignmentRule
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 GroupAssignmentRule
impl PartialEq for GroupAssignmentRule
Source§impl Serialize for GroupAssignmentRule
impl Serialize for GroupAssignmentRule
impl Copy for GroupAssignmentRule
impl Eq for GroupAssignmentRule
impl StructuralPartialEq for GroupAssignmentRule
Auto Trait Implementations§
impl Freeze for GroupAssignmentRule
impl RefUnwindSafe for GroupAssignmentRule
impl Send for GroupAssignmentRule
impl Sync for GroupAssignmentRule
impl Unpin for GroupAssignmentRule
impl UnsafeUnpin for GroupAssignmentRule
impl UnwindSafe for GroupAssignmentRule
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