Struct nlprule::types::WordData[][src]

pub struct WordData<'t> {
    pub lemma: WordId<'t>,
    pub pos: PosId<'t>,
}

Lemma and part-of-speech tag associated with a word.

Fields

lemma: WordId<'t>pos: PosId<'t>

Implementations

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

pub fn new(lemma: WordId<'t>, pos: PosId<'t>) -> Self[src]

pub fn to_owned_word_data(&self) -> WordData[src]

Trait Implementations

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

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

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

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

Auto Trait Implementations

impl<'t> RefUnwindSafe for WordData<'t>[src]

impl<'t> Send for WordData<'t>[src]

impl<'t> Sync for WordData<'t>[src]

impl<'t> Unpin for WordData<'t>[src]

impl<'t> UnwindSafe for WordData<'t>[src]

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.