pub trait StdGraph<N, E, A>: RawHyperGraph<A>{ }
Expand description
The StdGraph
is used to denotes instances in-which the hypergraph contains binary edges
meaning that each edge is composed of exactly two vertices.
note: the trait is automatically implemented for all hypergraphs that leverage a
so-called [BinaryEdge
] representation
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.