Skip to main content

TreeViewExt

Trait TreeViewExt 

Source
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§

Source

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".

Implementors§

Source§

impl<T> TreeViewExt for T
where T: Into<View>,