pub trait PrintableTree {
    // Required method
    fn print_with<T: PrintTreePrinter>(&self, pt: &mut T);
}

Required Methods§

Implementors§