Trait petgraph::visit::GraphBase[][src]

pub trait GraphBase {
    type EdgeId: Copy + PartialEq;
    type NodeId: Copy + PartialEq;
}

Base graph trait: defines the associated node identifier and edge identifier types.

Associated Types

edge identifier

node identifier

Implementations on Foreign Types

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

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

Implementors