Enum advent_solutions::advent2017::day23::Value [] [src]

pub enum Value {
    Literal(isize),
    Register(char),
}

Variants

Methods

impl Value
[src]

Trait Implementations

impl Copy for Value
[src]

impl Clone for Value
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl PartialEq for Value
[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 Eq for Value
[src]

impl Debug for Value
[src]

[src]

Formats the value using the given formatter. Read more

impl Hash for Value
[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 From<isize> for Value
[src]

[src]

Performs the conversion.

impl From<char> for Value
[src]

[src]

Performs the conversion.