pub enum PeopleOrientation {
PeopleSeeking,
Neutral,
PeopleAvoidant,
Unknown,
}Expand description
Domain vocabulary for people orientation decisions in temperament workflows.
Variants§
PeopleSeeking
People seeking temperament signal for playgroup and handling decisions.
Neutral
Neutral temperament signal for playgroup and handling decisions.
PeopleAvoidant
People avoidant temperament signal for playgroup and handling decisions.
Unknown
Provider role or status could not be mapped confidently.
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