Struct google_language1::PartOfSpeech[][src]

pub struct PartOfSpeech {
    pub case: Option<String>,
    pub reciprocity: Option<String>,
    pub form: Option<String>,
    pub gender: Option<String>,
    pub number: Option<String>,
    pub person: Option<String>,
    pub tag: Option<String>,
    pub tense: Option<String>,
    pub aspect: Option<String>,
    pub proper: Option<String>,
    pub voice: Option<String>,
    pub mood: Option<String>,
}

Represents part of speech information for a token. Parts of speech are as defined in http://www.lrec-conf.org/proceedings/lrec2012/pdf/274_Paper.pdf

This type is not used in any activity, and only used as part of another schema.

Fields

The grammatical case.

The grammatical reciprocity.

The grammatical form.

The grammatical gender.

The grammatical number.

The grammatical person.

The part of speech tag.

The grammatical tense.

The grammatical aspect.

The grammatical properness.

The grammatical voice.

The grammatical mood.

Trait Implementations

impl Default for PartOfSpeech
[src]

Returns the "default value" for a type. Read more

impl Clone for PartOfSpeech
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for PartOfSpeech
[src]

Formats the value using the given formatter. Read more

impl Part for PartOfSpeech
[src]

Auto Trait Implementations