pub enum Emotion {
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<'de> Deserialize<'de> for Emotion
impl<'de> Deserialize<'de> for Emotion
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 OpenApi for Emotion
impl OpenApi for Emotion
Source§fn openapi() -> OpenApi
fn openapi() -> OpenApi
Return the
openapi::OpenApi instance which can be parsed with serde or served via
OpenAPI visualization tool such as Swagger UI.Source§impl Ord for Emotion
impl Ord for Emotion
Source§impl PartialOrd for Emotion
impl PartialOrd for Emotion
impl Copy for Emotion
impl Eq for Emotion
impl StructuralPartialEq for Emotion
Auto Trait Implementations§
impl Freeze for Emotion
impl RefUnwindSafe for Emotion
impl Send for Emotion
impl Sync for Emotion
impl Unpin for Emotion
impl UnwindSafe for Emotion
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.