Trait petgraph::visit::FilterNode [] [src]

pub trait FilterNode<N> {
    fn include_node(&self, node: N) -> bool;
}

A graph filter for nodes.

Required Methods

Return true to have the node be part of the graph

Implementations on Foreign Types

impl<N> FilterNode<N> for FixedBitSet where
    FixedBitSet: VisitMap<N>, 
[src]

This filter includes the nodes that are contained in the set.

[src]

impl<N, S> FilterNode<N> for HashSet<N, S> where
    HashSet<N, S>: VisitMap<N>, 
[src]

This filter includes the nodes that are contained in the set.

[src]

Implementors