Trait petgraph::visit::VisitMap [] [src]

pub trait VisitMap<N> {
    fn visit(&mut self, _: N) -> bool;
fn is_visited(&self, _: &N) -> bool; }

A mapping for storing the visited status for NodeId N.

Required Methods

Return true if the value is not already present.

Implementors