Enum sudoku::ParseError [] [src]

pub enum ParseError {
    UnequalDimensions,
    LargeValue(u8Point),
    NonSquareAxis,
}

Represents a deserialization error.

Variants

Represents a grid with differing width and height.

Represents the presence of a value too large for the puzzle's dimensions.

The associated values are the large value and its would-be location in the puzzle.

Represents a grid with a non-perfect-square axial length.

Trait Implementations

impl Clone for ParseError
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Copy for ParseError
[src]

impl Debug for ParseError
[src]

[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for ParseError

impl Sync for ParseError