pub enum Syllable {
Vowel,
Consonant,
Alphabet,
}Expand description
Enum to represent available kind of syllables
Variants§
Vowel
syllable comprised of vowels
Consonant
syllable comprised of consonants
Alphabet
either vowel or consonant syllable
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Syllable
impl RefUnwindSafe for Syllable
impl Send for Syllable
impl Sync for Syllable
impl Unpin for Syllable
impl UnwindSafe for Syllable
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