Trait typed_graph::NodeExt

source ·
pub trait NodeExt<NK: Key>: Typed + Id<NK> + Clone + Debug { }
Expand description

Trait shared by all nodes in a graph

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<K: Key, T: GenericTypeIdentifier> NodeExt<K> for GenericNode<K, T>

source§

impl<NK: Key, Old: NodeExt<NK>, New: NodeExt<NK>> NodeExt<NK> for EitherVersion<Old, New>