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
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".