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

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

A graph with a known node count.

Required methods

fn node_count(&self) -> usize

Loading content...

Implementations on Foreign Types

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

Loading content...

Implementors

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

impl<G> NodeCount for Reversed<G> where
    G: NodeCount
[src]

impl<G, F> NodeCount for EdgeFiltered<G, F> where
    G: NodeCount
[src]

impl<N, E, Ty> NodeCount for GraphMap<N, E, Ty> where
    N: NodeTrait,
    Ty: EdgeType
[src]

impl<N, E, Ty, Ix> NodeCount for Csr<N, E, Ty, Ix> where
    Ty: EdgeType,
    Ix: IndexType
[src]

impl<N, E, Ty, Ix> NodeCount for Graph<N, E, Ty, Ix> where
    Ty: EdgeType,
    Ix: IndexType
[src]

impl<N, E, Ty, Ix> NodeCount for StableGraph<N, E, Ty, Ix> where
    Ty: EdgeType,
    Ix: IndexType
[src]

impl<N, E, Ty: EdgeType, Null: Nullable<Wrapped = E>, Ix: IndexType> NodeCount for MatrixGraph<N, E, Ty, Null, Ix>[src]

Loading content...