Enum fera_graph::props::Color [] [src]

pub enum Color {
    White,
    Gray,
    Black,
}

Indicates the status of an item in a traverse algorithm.

Variants

Generally indicates that an item was not discovered in the search.

Generally indicates that an item was discovered in the search but there is some pending work to be done with the item.

Generally indicates that the item was discovered and all the work related with the item is finished.

Trait Implementations

impl Copy for Color
[src]

impl Clone for Color
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

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

impl Hash for Color
[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 Debug for Color
[src]

[src]

Formats the value using the given formatter.

impl Default for Color
[src]

[src]

Returns Color::White.