pub trait HasAddr<T = Self> { // Required method fn addr(&self) -> Cow<'_, Node<T>>; }
A trait implemented by values which have a strong node address associated with them
Get a Cow of the strong node address associated with this value
Cow