pub trait GraphProp: GraphBase {
type EdgeType: EdgeType;
// Provided method
fn is_directed(&self) -> bool { ... }
}
Expand description
Edge kind property (directed or undirected edges)
Required Associated Types§
Provided Methods§
fn is_directed(&self) -> bool
Object Safety§
This trait is not object safe.