pub enum SyllableMode {
Written,
Oral,
}Expand description
Mode de syllabification : orale ou écrite.
Variants§
Written
Syllabes écrites : la dernière syllabe muette reste détachée (ex: é-co-le)
Oral
Syllabes orales : la dernière syllabe muette est fusionnée avec la précédente (ex: é-cole)
Trait Implementations§
Source§impl Clone for SyllableMode
impl Clone for SyllableMode
Source§fn clone(&self) -> SyllableMode
fn clone(&self) -> SyllableMode
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for SyllableMode
impl Debug for SyllableMode
Source§impl PartialEq for SyllableMode
impl PartialEq for SyllableMode
impl Copy for SyllableMode
impl Eq for SyllableMode
impl StructuralPartialEq for SyllableMode
Auto Trait Implementations§
impl Freeze for SyllableMode
impl RefUnwindSafe for SyllableMode
impl Send for SyllableMode
impl Sync for SyllableMode
impl Unpin for SyllableMode
impl UnsafeUnpin for SyllableMode
impl UnwindSafe for SyllableMode
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