pub enum Inflection<'a> {
    AdjectiveDeclensionBasic(AdjectiveDeclensionBasic<'a>),
    Comparison(Comparison<'a>),
    Conjugation(Conjugation<'a>),
    Indeclinable,
    NounDeclensionBasic(NounDeclensionBasic<'a>),
    NumeralDeclensionAdjective(AdjectiveDeclensionBasic<'a>),
    NumeralDeclensionBasic(NumeralDeclensionBasic<'a>),
    NumeralDeclensionSgPl(NumeralDeclensionSgPl<'a>),
    PronounDeclensionAdjective(PronounDeclensionAdjective<'a>),
    PronounDeclensionBasic(PronounDeclensionBasic<'a>),
}
Expand description

Pattern of inflection.

Variants§

§

AdjectiveDeclensionBasic(AdjectiveDeclensionBasic<'a>)

From the template Adjektivum (cs).

§

Comparison(Comparison<'a>)

From the template Stupňování (cs).

§

Conjugation(Conjugation<'a>)

From the template Sloveso (cs).

§

Indeclinable

From the template Substantivum (cs).

§

NounDeclensionBasic(NounDeclensionBasic<'a>)

From the template Substantivum (cs).

§

NumeralDeclensionAdjective(AdjectiveDeclensionBasic<'a>)

From the template Číslovka adj (cs).

§

NumeralDeclensionBasic(NumeralDeclensionBasic<'a>)

From the template Číslovka (cs).

§

NumeralDeclensionSgPl(NumeralDeclensionSgPl<'a>)

From the template Číslovka (cs).

§

PronounDeclensionAdjective(PronounDeclensionAdjective<'a>)

From the template Zájmeno adj (cs).

§

PronounDeclensionBasic(PronounDeclensionBasic<'a>)

From the template Zájmeno (cs).

Trait Implementations§

Formats the value using the given formatter. Read more
Deserialize this value from the given Serde deserializer. Read more
Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations§

Blanket Implementations§

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.