Struct ispell::IspellError [] [src]

pub struct IspellError {
    pub mispelled: String,
    pub position: usize,
    pub suggestions: Vec<String>,
}

An ispell error when a word is not found in a dictionary

Fields

The mispelled word

The position of the word (number of characters since the beginning of the new line)

A list of suggestions

Trait Implementations

impl Debug for IspellError
[src]

Formats the value using the given formatter.

impl PartialEq for IspellError
[src]

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

This method tests for !=.