pub trait GraphBase {
type EdgeId: Copy + PartialEq;
type NodeId: Copy + PartialEq;
}Expand description
Base graph trait: defines the associated node identifier and edge identifier types.
Required Associated Types§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".