Trait NodeExt

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

Trait shared by all nodes in a graph

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<K: Key, T: GenericTypeIdentifier> NodeExt<K> for GenericNode<K, T>

Source§

impl<NK: Key> NodeExt<NK> for AnyWeight<NK>

Source§

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