Trait splashsurf_lib::generic_tree::TreeNodeMut[][src]

pub trait TreeNodeMut: TreeNode {
    fn children_mut(&mut self) -> &mut [Box<Self>];
}
Expand description

Trait that has to be implemented by tree-like structures to visit and mutate them

Required methods

Returns a mutable slice of all child nodes

Implementors