Trait petgraph::visit::GraphProp[][src]

pub trait GraphProp: GraphBase {
    type EdgeType: EdgeType;
    fn is_directed(&self) -> bool { ... }
}

Edge kind property (directed or undirected edges)

Associated Types

The kind edges in the graph.

Provided Methods

Implementations on Foreign Types

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

Implementors