pub struct PosEntry<'a> {
Show 13 fields pub antonyms: Vec<Vec<Flowing<'a>>>, pub compound_words: Vec<Vec<Flowing<'a>>>, pub definitions: Vec<Definition<'a>>, pub details: Vec<Vec<Flowing<'a>>>, pub etymology: Vec<Flowing<'a>>, pub inflection: Vec<InflectionEntry<'a>>, pub phrases_and_idioms: Vec<Vec<Flowing<'a>>>, pub pos: Pos, pub proverbs: Vec<Cow<'a, str>>, pub related_terms: Vec<Vec<Flowing<'a>>>, pub synonyms: Vec<Vec<Flowing<'a>>>, pub translations: Vec<Translations<'a>>, pub variants: Vec<Vec<Flowing<'a>>>,
}
Expand description

The entry for a part of speech within the entry for a language.

Fields§

§antonyms: Vec<Vec<Flowing<'a>>>

Antonyms for the entry.

Parsed from the section antonyma.

§compound_words: Vec<Vec<Flowing<'a>>>

Compound words for the entry.

Parsed from the section slovní spojení.

§definitions: Vec<Definition<'a>>

Definitions of the entry.

Parsed from the section význam.

§details: Vec<Vec<Flowing<'a>>>

Various details about the entry.

Parsed from the unordered list between the POS heading and the next heading

§etymology: Vec<Flowing<'a>>

Etymology of the entry.

§inflection: Vec<InflectionEntry<'a>>

Inflection of the entry, from the sections časování, skloňování, skloňování (1), skloňování (2) and stupňování.

§phrases_and_idioms: Vec<Vec<Flowing<'a>>>

Phrases and idioms for the entry.

Parsed from the section fráze a idiomy.

§pos: Pos

Part of speech of the entry.

Some parts of speech hold additional information.

§proverbs: Vec<Cow<'a, str>>

Proverbs for the entry.

Parsed from the section přísloví, úsloví a pořekadla.

§related_terms: Vec<Vec<Flowing<'a>>>

Related terms for the entry.

Parsed from the section související.

§synonyms: Vec<Vec<Flowing<'a>>>

Synonyms for the entry.

Parsed from the section synonyma.

§translations: Vec<Translations<'a>>

Translations for each definition of the entry.

Parsed from the section ‘překlady’.

§variants: Vec<Vec<Flowing<'a>>>

Variants for the entry.

Parsed from the section varianty.

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.