macro_rules! impl_node { ( $node:ident$(<$($g:tt),* $(,)?>)? { Key = $key:ty, prev = $prev:ident, next = $next:ident $(,)? } ) => { ... }; }
Implements Node trait for the specific structure.
Node