Enum mon_artist::grid::Elem [] [src]

pub enum Elem {
    C(char),
    Used(char),
    Pad,
    Clear,
}

An element on the Grid.

Variants

A character from the original input that has not yet been used in any path construction.

A character from the original input that was used in some path construction.

Padding inserted to make all the rows have the same length.

Marker indicating that we already removed the character that fell above this.

Methods

impl Elem
[src]

Trait Implementations

impl PartialEq for Elem
[src]

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

This method tests for !=.

impl Eq for Elem
[src]

impl Copy for Elem
[src]

impl Clone for Elem
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Elem
[src]

Formats the value using the given formatter.

impl Hash for Elem
[src]

Feeds this value into the state given, updating the hasher as necessary.

Feeds a slice of this type into the state provided.