pub trait GraphProp: GraphBase {
    type EdgeType: EdgeType;

    fn is_directed(&self) -> bool { ... }
}
Expand description

Edge kind property (directed or undirected edges)

Required Associated Types

The kind edges in the graph.

Provided Methods

Implementations on Foreign Types

Implementors