pub trait GraphRef: Copy + GraphBase { }
Expand description

A copyable reference to a graph.

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl<'a, G> GraphRef for &'a G
where G: GraphBase,

Implementors§

source§

impl<G> GraphRef for Reversed<G>
where G: GraphRef,