Struct dictcc::DictWord [] [src]

pub struct DictWord {
    pub word_nodes: WordNodes<String>,
    pub word_count: u8,
    // some fields omitted
}

Structure that contains all fields of a dictionary entry from dict.cc

Fields

The AST (abstract syntax tree) of the complete word.

The number of space separated words in this DictWord

Methods

impl DictWord
[src]

[src]

Syntax: <foo> <foo, bar>

Indexing: not for sorting, but a keyword

[src]

Syntax: [foo]

Indexing: not for sorting and not a keyword

[src]

Syntax: {f} {m} {n} {pl} {sg}

Indexing: not for sorting and not a keyword

[src]

The word with optional parts

Syntax: (a) foo

Indexing: for sorting and a keyword

[src]

The word with optional parts

Syntax: foo

Trait Implementations

impl Clone for DictWord
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Eq for DictWord
[src]

impl PartialEq for DictWord
[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 DictWord
[src]

[src]

Formats the value using the given formatter.

impl Display for DictWord
[src]

[src]

Formats the value using the given formatter. Read more