display_tree icon indicating copy to clipboard operation
display_tree copied to clipboard

Simple, automatic, and customizable tree pretty-printing in Rust.

Results 2 display_tree issues
Sort by recently updated
recently updated
newest added

Something like this doesn't work, ```rust #[derive(Debug, Clone, DisplayTree)] pub enum Html { Text(String), Element { tag: String, /// Can't use this `#[tree]` children: Vec, } } ``` I'm cloned...

enhancement

The following code fails to build: ```rust #[derive(DisplayTree)] struct Hello { field: T, } ``` The error message: ``` error[E0277]: `T` doesn't implement `std::fmt::Display` --> common/src/lib.rs:27:10 | 27 | #[derive(DisplayTree)]...