pub enum Sentiment {
Positive,
Neutral,
Negative,
Mixed,
}Expand description
Domain vocabulary for sentiment decisions in reputation workflows.
Variants§
Positive
Positive review sentiment, topic, or response action for guest-experience follow-up.
Neutral
Neutral review sentiment, topic, or response action for guest-experience follow-up.
Negative
Negative review sentiment, topic, or response action for guest-experience follow-up.
Mixed
Mixed review sentiment, topic, or response action for guest-experience follow-up.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Sentiment
impl<'de> Deserialize<'de> for Sentiment
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
impl Copy for Sentiment
impl Eq for Sentiment
impl StructuralPartialEq for Sentiment
Auto Trait Implementations§
impl Freeze for Sentiment
impl RefUnwindSafe for Sentiment
impl Send for Sentiment
impl Sync for Sentiment
impl Unpin for Sentiment
impl UnsafeUnpin for Sentiment
impl UnwindSafe for Sentiment
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