Struct dictcc::DictEntry [] [src]

pub struct DictEntry {
    pub left_word: DictWord,
    pub right_word: DictWord,
    pub word_classes: Vec<WordClass>,
}

Structure that holds the word pair and it's class

Fields

The word on the left side.

The word on the right side.

List of word classes (noun, verb, adj, etc.).

Trait Implementations

impl Clone for DictEntry
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Eq for DictEntry
[src]

impl PartialEq for DictEntry
[src]

[src]

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

[src]

This method tests for !=.

impl Debug for DictEntry
[src]

[src]

Formats the value using the given formatter.