pub trait DisplayableNode: Sized {
    fn label(&self) -> Option<String>;
fn children(&self) -> Vec<&Self>; fn display(&self) -> String { ... } }
Expand description

simple trait to provide an easy way to display hierarchy trees

Required methods

Provided methods

Implementors