Enum advent_solutions::advent2017::day22::Node [] [src]

pub enum Node {
    Clean,
    Weakened,
    Infected,
    Flagged,
}

Variants

Trait Implementations

impl Copy for Node
[src]

impl Clone for Node
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl PartialEq for Node
[src]

[src]

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

1.0.0
[src]

This method tests for !=.

impl Eq for Node
[src]

impl Debug for Node
[src]

[src]

Formats the value using the given formatter. Read more

impl Hash for Node
[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 TryFrom<char> for Node
[src]

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

The type returned in the event of a conversion error.

[src]

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

Performs the conversion.

impl Into<char> for Node
[src]

[src]

Performs the conversion.

impl<'a> Into<char> for &'a Node
[src]

[src]

Performs the conversion.

impl Display for Node
[src]

[src]

Formats the value using the given formatter. Read more