pub enum FeedbackSentiment {
Positive,
Negative,
Neutral,
}Expand description
Feedback sentiment.
Variants§
Trait Implementations§
Source§impl Clone for FeedbackSentiment
impl Clone for FeedbackSentiment
Source§fn clone(&self) -> FeedbackSentiment
fn clone(&self) -> FeedbackSentiment
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 FeedbackSentiment
impl Debug for FeedbackSentiment
Source§impl PartialEq for FeedbackSentiment
impl PartialEq for FeedbackSentiment
Source§fn eq(&self, other: &FeedbackSentiment) -> bool
fn eq(&self, other: &FeedbackSentiment) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for FeedbackSentiment
impl Eq for FeedbackSentiment
impl StructuralPartialEq for FeedbackSentiment
Auto Trait Implementations§
impl Freeze for FeedbackSentiment
impl RefUnwindSafe for FeedbackSentiment
impl Send for FeedbackSentiment
impl Sync for FeedbackSentiment
impl Unpin for FeedbackSentiment
impl UnsafeUnpin for FeedbackSentiment
impl UnwindSafe for FeedbackSentiment
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