pub enum Fact {
Show 13 variants
Case(Case),
Tense(Tense),
Plurality(Plurality),
Mood(Mood),
Adjective(Adjective),
ComparativeDegree(ComparativeDegree),
Person(Person),
Gender(Gender),
PerfectiveAspect(PerfectiveAspect),
Voice(Voice),
Animacy(Animacy),
Transitivity(Transitivity),
Other(Other),
}
Expand description
Контейнер для любых фактов о разобранном слове
Variants§
Case(Case)
Падеж
Tense(Tense)
Время глаголов
Plurality(Plurality)
Число
Mood(Mood)
Наклонение глагола
Adjective(Adjective)
Форма прилагательного
ComparativeDegree(ComparativeDegree)
Степень сравнения
Person(Person)
Лицо глагола
Gender(Gender)
Род
PerfectiveAspect(PerfectiveAspect)
Вид глагола
Voice(Voice)
Залог
Animacy(Animacy)
Одушевленность
Transitivity(Transitivity)
Переходность
Other(Other)
Прочие обозначения
Trait Implementations§
impl StructuralPartialEq for Fact
Auto Trait Implementations§
impl Freeze for Fact
impl RefUnwindSafe for Fact
impl Send for Fact
impl Sync for Fact
impl Unpin for Fact
impl UnwindSafe for Fact
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