Enum sudoku::parse_errors::LineFormatParseError [] [src]

pub enum LineFormatParseError {
    InvalidEntry(PubEntry),
    NotEnoughCells(u8),
    TooManyCells,
    MissingCommentDelimiter,
}

A structure representing an error caused when parsing the sudoku

Variants

Accepted values are numbers 1...9 and '0', '.' or '_' for empty cells

Returns number of cells supplied

Returned if >=82 valid cell positions are supplied

Comments must be delimited by a space or tab.

Trait Implementations

impl Clone for LineFormatParseError
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for LineFormatParseError
[src]

[src]

Formats the value using the given formatter.

impl Eq for LineFormatParseError
[src]

impl Hash for LineFormatParseError
[src]

[src]

Feeds this value into the given [Hasher]. Read more

1.3.0
[src]

Feeds a slice of this type into the given [Hasher]. Read more

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

[src]

Formats the value using the given formatter. Read more