HyperGraphIter

Trait HyperGraphIter 

Source
pub trait HyperGraphIter<N, E, A>: HyperGraphIterNode<N, E, A> + HyperGraphIterEdge<N, E, A>
where A: GraphProps,
{ }
Expand description

The HyperGraphIter trait combines the HyperGraphIterNode and HyperGraphIterEdge traits to provide a unified interface for iterating over both nodes

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<H, N, E, A> HyperGraphIter<N, E, A> for H
where A: GraphProps, H: HyperGraphIterNode<N, E, A> + HyperGraphIterEdge<N, E, A>,