pub trait LLNodeOps<T>: Default {
    fn width_data(self, raw_data: T) -> Self;
    fn get_data(&self) -> Option<&T>;
    fn get_data_mut(&mut self) -> Option<&mut T>;
}
Expand description

This is functionality every node should have

Required Methods

Implementors