Trait petgraph::visit::NodeCount[][src]

pub trait NodeCount: GraphBase {
    fn node_count(&self) -> usize;
}

A graph with a known node count.

Required Methods

Implementations on Foreign Types

impl<'a, G> NodeCount for &'a G where
    G: NodeCount
[src]

Implementors