StdGraph

Trait StdGraph 

Source
pub trait StdGraph<N, E, A>: RawHyperGraph<A>
where A: GraphProps, Self::Edge<E>: BinaryLayout,
{ }
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.

Implementors§

Source§

impl<N, E, A, H> StdGraph<N, E, A> for H
where A: GraphProps, N: Default, E: Default, H: HyperGraph<N, E, A>, H::Edge<E>: BinaryLayout,