pub trait EdgeFindable: Data {
// Required method
fn edge_find(
&self,
a: Self::NodeId,
b: Self::NodeId,
) -> Option<Self::EdgeId>;
}Expand description
A graph that can find edges by a pair of node ids.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".