Enum piston_meta::NodeVisit [] [src]

pub enum NodeVisit {
    Unvisited,
    Visited,
}

Tells whether a node is visited when updated.

Variants

Unvisited

The node is not being visited.

Visited

The node is being visited.

Trait Implementations

impl Clone for NodeVisit
[src]

fn clone(&self) -> NodeVisit

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)
1.0.0

Performs copy-assignment from source. Read more

impl Copy for NodeVisit
[src]