Struct nlprule::types::Word[][src]

pub struct Word<'t> { /* fields omitted */ }

Contains all the local information about a token i. e. the text itself and the WordDatas associated with the word.

Implementations

impl<'t> Word<'t>[src]

pub fn new(text: WordId<'t>, tags: Vec<WordData<'t>>) -> Self[src]

Creates a new Word.

pub fn text(&self) -> &WordId<'t>[src]

The text ID of this token.

pub fn tags(&self) -> &[WordData<'t>][src]

Multiple pairs of (lemma, part-of-speech) associated with this token. Order is in general not significant.

pub fn as_str(&'t self) -> &'t str[src]

Gets the word text as string.

pub fn clear(&mut self)[src]

Removes all non-frozen tags.

pub fn retain<F: FnMut(&WordData<'t>) -> bool>(&mut self, f: F)[src]

Equivalent to Vec::retain on the tags but makes sure frozen tags are ignored.

pub fn push(&mut self, data: WordData<'t>)[src]

Adds a new tag to the word.

pub fn to_owned_word(&self) -> Word[src]

Converts to an owned word.

Trait Implementations

impl<'t> Clone for Word<'t>[src]

impl<'t> Debug for Word<'t>[src]

impl<'t> PartialEq<Word<'t>> for Word<'t>[src]

impl<'t> StructuralPartialEq for Word<'t>[src]

Auto Trait Implementations

impl<'t> RefUnwindSafe for Word<'t>

impl<'t> Send for Word<'t>

impl<'t> Sync for Word<'t>

impl<'t> Unpin for Word<'t>

impl<'t> UnwindSafe for Word<'t>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Pointable for T

type Init = T

The type for initializers.

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.