Struct tui_tree_widget::Tree
source · pub struct Tree<'a> { /* private fields */ }Expand description
A Tree which can be rendered
Example
let mut state = TreeState::default();
let item = TreeItem::new_leaf("leaf");
let items = vec![item];
terminal.draw(|f| {
let area = f.size();
let tree_widget = Tree::new(items.clone())
.block(Block::default().borders(Borders::ALL).title("Tree Widget"));
f.render_stateful_widget(tree_widget, area, &mut state);
})?;Implementations§
source§impl<'a> Tree<'a>
impl<'a> Tree<'a>
pub fn new<T>(items: T) -> Selfwhere T: Into<Vec<TreeItem<'a>>>,
pub fn block(self, block: Block<'a>) -> Self
pub const fn start_corner(self, corner: Corner) -> Self
pub const fn style(self, style: Style) -> Self
pub const fn highlight_style(self, style: Style) -> Self
pub const fn highlight_symbol(self, highlight_symbol: &'a str) -> Self
pub const fn node_closed_symbol(self, symbol: &'a str) -> Self
pub const fn node_open_symbol(self, symbol: &'a str) -> Self
pub const fn node_no_children_symbol(self, symbol: &'a str) -> Self
Trait Implementations§
source§impl<'a> StatefulWidget for Tree<'a>
impl<'a> StatefulWidget for Tree<'a>
Auto Trait Implementations§
impl<'a> RefUnwindSafe for Tree<'a>
impl<'a> Send for Tree<'a>
impl<'a> Sync for Tree<'a>
impl<'a> Unpin for Tree<'a>
impl<'a> UnwindSafe for Tree<'a>
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more