pub trait GraphTypeRef<'a>: Clone {
type Node: Copy + Eq;
type Edge: Copy + Eq;
}Expand description
A reference to a basic graph type.
Required Associated Types§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".