Crate mktree

source ·

Re-exports

pub use tree::MkTree;
pub use tree::TreeContainer;
pub use tree::TreeNode;
pub use tree_checkbox::MkTreeCb;
pub use tree_checkbox::TreeContainerCb;
pub use tree_checkbox::TreeNodeCb;

Modules

A tree structure and display with egui::SelectableLabel at every leaves.
A tree structure and display with egui::Checkbox at every leaves.

Enums

Source from which a project code is queried.

Traits

What can be held within a tree node, e.g. being held inside a tree leaf, or a subtree root. Must implement Default in order to use std::mem::take on MkTree<T: Entity> in egui::Ui calls.