RawHyperGraph

Trait RawHyperGraph 

Source
pub trait RawHyperGraph<A>
where A: GraphProps,
{ type Edge<E>: RawSurface<E, Index = A::Ix, Kind = A::Kind>; type Node<N>: RawNode<N, Key = A::Ix>; }
Expand description

RawHyperGraph is a trait that defines the basic operations for a hypergraph data structure.

Required Associated Types§

Source

type Edge<E>: RawSurface<E, Index = A::Ix, Kind = A::Kind>

Source

type Node<N>: RawNode<N, Key = A::Ix>

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§