pub enum PeopleOrientation {
PeopleSeeking,
Neutral,
PeopleAvoidant,
Unknown,
}Expand description
Staff-observed people orientation used to plan handling, staffing, and customer follow-up.
Variants§
PeopleSeeking
Pet actively seeks human interaction, which helps staff plan handling and enrichment.
Neutral
Pet shows no strong people-seeking or avoidant signal in reviewed notes.
PeopleAvoidant
Pet avoids people, so staff should use slower handling and review before customer-facing assurances.
Unknown
People-orientation evidence is missing or unclear and should not drive handling policy by itself.
Trait Implementations§
Source§impl Clone for PeopleOrientation
impl Clone for PeopleOrientation
Source§fn clone(&self) -> PeopleOrientation
fn clone(&self) -> PeopleOrientation
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 PeopleOrientation
impl Debug for PeopleOrientation
Source§impl Default for PeopleOrientation
impl Default for PeopleOrientation
Source§fn default() -> PeopleOrientation
fn default() -> PeopleOrientation
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PeopleOrientation
impl<'de> Deserialize<'de> for PeopleOrientation
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 PeopleOrientation
impl PartialEq for PeopleOrientation
Source§impl Serialize for PeopleOrientation
impl Serialize for PeopleOrientation
impl Copy for PeopleOrientation
impl Eq for PeopleOrientation
impl StructuralPartialEq for PeopleOrientation
Auto Trait Implementations§
impl Freeze for PeopleOrientation
impl RefUnwindSafe for PeopleOrientation
impl Send for PeopleOrientation
impl Sync for PeopleOrientation
impl Unpin for PeopleOrientation
impl UnsafeUnpin for PeopleOrientation
impl UnwindSafe for PeopleOrientation
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