pub enum EmotionMode {
Angry,
Happy,
Sad,
Neutral,
}Variants§
Implementations§
Trait Implementations§
Source§impl Clone for EmotionMode
impl Clone for EmotionMode
Source§fn clone(&self) -> EmotionMode
fn clone(&self) -> EmotionMode
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 moreimpl Copy for EmotionMode
Source§impl Debug for EmotionMode
impl Debug for EmotionMode
Source§impl<'de> Deserialize<'de> for EmotionMode
impl<'de> Deserialize<'de> for EmotionMode
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 Eq for EmotionMode
Source§impl PartialEq for EmotionMode
impl PartialEq for EmotionMode
Source§fn eq(&self, other: &EmotionMode) -> bool
fn eq(&self, other: &EmotionMode) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for EmotionMode
impl Serialize for EmotionMode
impl StructuralPartialEq for EmotionMode
Auto Trait Implementations§
impl Freeze for EmotionMode
impl RefUnwindSafe for EmotionMode
impl Send for EmotionMode
impl Sync for EmotionMode
impl Unpin for EmotionMode
impl UnsafeUnpin for EmotionMode
impl UnwindSafe for EmotionMode
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