Enum nlp_annotations::pos::UdTag [] [src]

pub enum UdTag {
    Adj,
    Adv,
    Intj,
    Noun,
    PropN,
    Verb,
    Adp,
    Aux,
    Conj,
    Det,
    Num,
    Part,
    Pron,
    SConj,
    Punc,
    Sym,
    X,
}

Universal part-of-speech tags

Refer to the documentation for Universal Depdendencies, available at http://universaldependencies.org/docs/u/pos/all.html.

Variants

AdjAdvIntjNounPropNVerbAdpAuxConjDetNumPartPronSConjPuncSymX

Trait Implementations

impl Hash for UdTag
[src]

fn hash<__H: Hasher>(&self, __arg_0: &mut __H)

Feeds this value into the state given, updating the hasher as necessary.

fn hash_slice<H>(data: &[Self], state: &mut H) where H: Hasher
1.3.0

Feeds a slice of this type into the state provided.

impl Debug for UdTag
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.

impl PartialEq for UdTag
[src]

fn eq(&self, __arg_0: &UdTag) -> bool

This method tests for self and other values to be equal, and is used by ==. Read more

fn ne(&self, other: &Rhs) -> bool
1.0.0

This method tests for !=.

impl Eq for UdTag
[src]

impl Clone for UdTag
[src]

fn clone(&self) -> UdTag

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)
1.0.0

Performs copy-assignment from source. Read more

impl Copy for UdTag
[src]

impl AsRef<str> for UdTag
[src]

fn as_ref(&self) -> &'static str

Performs the conversion.

impl FromStr for UdTag
[src]

type Err = String

The associated error which can be returned from parsing.

fn from_str(value: &str) -> Result<UdTagString>

Parses a string s to return a value of this type. Read more

impl PosTag for UdTag
[src]