Trait petgraph::visit::EdgeCount

source ·
pub trait EdgeCount: GraphBase {
    // Required method
    fn edge_count(&self) -> usize;
}
Expand description

A graph with a known edge count.

Required Methods§

source

fn edge_count(&self) -> usize

Return the number of edges in the graph.

Implementations on Foreign Types§

source§

impl<'a, G> EdgeCount for &'a G
where G: EdgeCount,

Implementors§

source§

impl<'a, G> EdgeCount for Frozen<'a, G>
where G: EdgeCount,

source§

impl<E, Ix: IndexType> EdgeCount for List<E, Ix>

source§

impl<G> EdgeCount for Reversed<G>
where G: EdgeCount,

source§

impl<N, E, Ty, Ix> EdgeCount for Csr<N, E, Ty, Ix>
where Ty: EdgeType, Ix: IndexType,

source§

impl<N, E, Ty, Ix> EdgeCount for Graph<N, E, Ty, Ix>
where Ty: EdgeType, Ix: IndexType,