pub enum MorphologyType {
Isolating,
Agglutinative,
Fusional,
}
Expand description
Morphological type of the language.
Variants§
Isolating
Words are typically single morphemes (Chinese, Vietnamese)
Agglutinative
Words are formed by stringing together morphemes (Turkish, Japanese)
Fusional
Morphemes are fused together (Latin, Russian)
Trait Implementations§
Source§impl Clone for MorphologyType
impl Clone for MorphologyType
Source§fn clone(&self) -> MorphologyType
fn clone(&self) -> MorphologyType
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 MorphologyType
impl Debug for MorphologyType
Source§impl PartialEq for MorphologyType
impl PartialEq for MorphologyType
impl Copy for MorphologyType
impl Eq for MorphologyType
impl StructuralPartialEq for MorphologyType
Auto Trait Implementations§
impl Freeze for MorphologyType
impl RefUnwindSafe for MorphologyType
impl Send for MorphologyType
impl Sync for MorphologyType
impl Unpin for MorphologyType
impl UnwindSafe for MorphologyType
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