Type Alias StringTreeNode

Source
pub type StringTreeNode = TreeNode<String>;
Expand description

A common type where the only data is the node’s label as a String.

Note that From<&str> is implemented for TreeNode`.

Aliased Type§

pub struct StringTreeNode { /* private fields */ }