Enum ispell::IspellResult [] [src]

pub enum IspellResult {
    Ok,
    Root(String),
    Compound,
    Miss(IspellError),
    Guess(IspellError),
    None(IspellError),
}

A result from ispell, corresponding to a line that is sent back for each word

Variants

The word was found in the dictionnary.

Corresponds to '*'

The word wasn't found, but a root word was found.

Corresponds to '+'

The word wasn't found, but corresponds to the concatenation of two words

Corresponds to '-'

The word wasn't found, but there are near misses

Corresponds to '&'

The word wasn't found, but could be formed by adding illegal affixes to a known root

Corresponds to '?'

The word wasn't found in the dictionnary and there are no suggestions

Corresponds to '#'

Trait Implementations

impl Debug for IspellResult
[src]

Formats the value using the given formatter.

impl PartialEq for IspellResult
[src]

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

This method tests for !=.