Trait Node

Source
pub trait Node:
    Clone
    + Default
    + Eq
    + Hash { }
Expand description

Node describes compatible vertices of the crate::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<T> Node for T
where T: Clone + Default + Eq + Hash,