pub trait TreeViewExt: Into<View> + Sized {
// Provided method
fn nodes(self, nodes: impl IntoIterator<Item = TreeNode>) -> View { ... }
}Expand description
Supplies a keyed node hierarchy to a tree view.
Provided Methods§
fn nodes(self, nodes: impl IntoIterator<Item = TreeNode>) -> View
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".