pub fn write_indented_tree<A: TreeDisplayAdapter>(
adapter: &A,
root_name: &str,
root: &A::Node,
context: &mut A::Context,
formatter: &mut Formatter<'_>,
) -> ResultExpand description
Render a named tree using two-space indentation.
Each node is written as name: followed by TreeDisplayAdapter::write_node. Detail lines
and child nodes are indented beneath it.