pub enum Viseme {
Show 15 variants
Silence,
PP,
FF,
TH,
DD,
KK,
CH,
SS,
Aa,
E,
I,
O,
U,
RR,
Neutral,
}Expand description
A viseme: the canonical mouth shape associated with one or more phonemes.
Variants§
Silence
Mouth closed (silence).
PP
Bilabial plosive/nasal: B, M, P.
FF
Labiodental fricative: F, V.
TH
Dental fricative: TH, DH.
DD
Alveolar: D, T, N, L.
KK
Velar: K, G, NG.
CH
Palatal/affricate: CH, SH, ZH, JH.
SS
Sibilant fricative: S, Z.
Aa
Open vowel: AA, AE, AH.
E
Mid vowel: EH, ER, AY (and EY).
I
Close-front vowel: IH, IY.
O
Rounded mid vowel: OW, AO, OY.
U
Close-back / rounded vowel: UH, UW, AW.
RR
Retroflex / rhotic: R, ER.
Neutral
Mid-neutral: HH, W, Y.
Implementations§
Trait Implementations§
impl Eq for Viseme
impl StructuralPartialEq for Viseme
Auto Trait Implementations§
impl Freeze for Viseme
impl RefUnwindSafe for Viseme
impl Send for Viseme
impl Sync for Viseme
impl Unpin for Viseme
impl UnsafeUnpin for Viseme
impl UnwindSafe for Viseme
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<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more