pub enum EmotionTrue {
FemaleHappy,
FemaleSad,
FemaleAngry,
FemaleFearful,
FemaleDisgust,
FemaleSurprised,
MaleHappy,
MaleSad,
MaleAngry,
MaleFearful,
MaleDisgust,
MaleSurprised,
}
Expand description
An emotion to be applied to the speech.
Variants§
FemaleHappy
FemaleSad
FemaleAngry
FemaleFearful
FemaleDisgust
FemaleSurprised
MaleHappy
MaleSad
MaleAngry
MaleFearful
MaleDisgust
MaleSurprised
Trait Implementations§
Source§impl Clone for EmotionTrue
impl Clone for EmotionTrue
Source§fn clone(&self) -> EmotionTrue
fn clone(&self) -> EmotionTrue
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for EmotionTrue
impl Debug for EmotionTrue
Source§impl Default for EmotionTrue
impl Default for EmotionTrue
Source§fn default() -> EmotionTrue
fn default() -> EmotionTrue
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for EmotionTrue
impl<'de> Deserialize<'de> for EmotionTrue
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 Hash for EmotionTrue
impl Hash for EmotionTrue
Source§impl Ord for EmotionTrue
impl Ord for EmotionTrue
Source§fn cmp(&self, other: &EmotionTrue) -> Ordering
fn cmp(&self, other: &EmotionTrue) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for EmotionTrue
impl PartialEq for EmotionTrue
Source§impl PartialOrd for EmotionTrue
impl PartialOrd for EmotionTrue
Source§impl Serialize for EmotionTrue
impl Serialize for EmotionTrue
impl Copy for EmotionTrue
impl Eq for EmotionTrue
impl StructuralPartialEq for EmotionTrue
Auto Trait Implementations§
impl Freeze for EmotionTrue
impl RefUnwindSafe for EmotionTrue
impl Send for EmotionTrue
impl Sync for EmotionTrue
impl Unpin for EmotionTrue
impl UnwindSafe for EmotionTrue
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