Trait graphalgs::traits::EdgeCount[][src]

pub trait EdgeCount {
    fn number_of_edges(self) -> usize;
}

Graph with known number of edges.

Required methods

Loading content...

Implementations on Foreign Types

impl<'a, N: 'a, E: 'a, Ty: EdgeType, Ix: IndexType> EdgeCount for &'a Graph<N, E, Ty, Ix>[src]

impl<'a, N: 'a, E: 'a, Ty: EdgeType, Ix: IndexType> EdgeCount for &'a StableGraph<N, E, Ty, Ix>[src]

impl<'a, N: 'a + NodeTrait, E: 'a, Ty: EdgeType> EdgeCount for &'a GraphMap<N, E, Ty>[src]

impl<'a, N: 'a, E: 'a, Ty: EdgeType> EdgeCount for &'a MatrixGraph<N, E, Ty>[src]

impl<'a, N: 'a, E: 'a, Ty: EdgeType> EdgeCount for &'a Csr<N, E, Ty>[src]

Loading content...

Implementors

Loading content...