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

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

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

Implementations

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

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

The lemma word ID.

pub fn pos(&self) -> &PosId<'t>[src]

The part-of-speech ID.

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

Creates a new referential word data.

pub fn freeze(&mut self)[src]

Freezes the data hinting that it should never be removed from a word once added.

pub fn frozen(&self) -> bool[src]

Checks whether the data is frozen i.e. whether it can never be removed from a word once added.

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

Converts to owned word data.

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>

impl<'t> Send for WordData<'t>

impl<'t> Sync for WordData<'t>

impl<'t> Unpin for WordData<'t>

impl<'t> UnwindSafe for WordData<'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.