[][src]Struct sudoku::parse_errors::Entry

pub struct Entry {
    pub cell: u8,
    pub ch: char,
}

An invalid entry that was parsed

Fields

Cell number goes from 0..=80, 0..=8 for first line, 9..=17 for 2nd and so on

The parsed invalid char

Methods

impl PubEntry
[src]

Row index from 0..=8, topmost row is 0

Column index from 0..=8, leftmost col is 0

Field index from 0..=8, numbering from left to right, top to bottom. Example: Top-row is 0, 1, 2

Trait Implementations

impl PartialEq<PubEntry> for PubEntry
[src]

impl Clone for PubEntry
[src]

Performs copy-assignment from source. Read more

impl Copy for PubEntry
[src]

impl Eq for PubEntry
[src]

impl Debug for PubEntry
[src]

impl Hash for PubEntry
[src]

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

Auto Trait Implementations

impl Send for PubEntry

impl Sync for PubEntry

Blanket Implementations

impl<T> From for T
[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> BorrowMut for T where
    T: ?Sized
[src]