pub struct TreeNode {
pub name: String,
pub parent: Option<usize>,
pub children: Vec<usize>,
pub node_type: NodeType,
pub symlink_target: Option<String>,
pub is_recursive: bool,
pub visible: bool,
}Fields§
§name: String§parent: Option<usize>§children: Vec<usize>§node_type: NodeType§symlink_target: Option<String>§is_recursive: bool§visible: boolTrait Implementations§
Auto Trait Implementations§
impl Freeze for TreeNode
impl RefUnwindSafe for TreeNode
impl Send for TreeNode
impl Sync for TreeNode
impl Unpin for TreeNode
impl UnwindSafe for TreeNode
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