Struct chinese_ner::NamedEntity[][src]

pub struct NamedEntity<'a> {
    pub word: Vec<&'a str>,
    pub tag: Vec<&'a str>,
    pub entity: Vec<(usize, usize, &'static str)>,
}

Fields

Trait Implementations

impl<'a> Debug for NamedEntity<'a>
[src]

Formats the value using the given formatter. Read more

impl<'a> Clone for NamedEntity<'a>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<'a> PartialEq for NamedEntity<'a>
[src]

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

This method tests for !=.

Auto Trait Implementations

impl<'a> Send for NamedEntity<'a>

impl<'a> Sync for NamedEntity<'a>