pub struct NodeBuilder<T> { /* private fields */ }
Expand description
A Node
builder that provides more control over how a Node
is created.
Implementations§
Source§impl<T> NodeBuilder<T>
impl<T> NodeBuilder<T>
Sourcepub fn new(data: T) -> NodeBuilder<T>
pub fn new(data: T) -> NodeBuilder<T>
Creates a new NodeBuilder
with the required data.
use id_tree::NodeBuilder;
let _node_builder = NodeBuilder::new(5);
Sourcepub fn with_child_capacity(self, child_capacity: usize) -> NodeBuilder<T>
pub fn with_child_capacity(self, child_capacity: usize) -> NodeBuilder<T>
Set the child capacity of the NodeBuilder
.
As Node
s are added to a Tree
, parent and child references must be maintained. To do
this, an allocation must be made every time a child is added to a Node
. Using this
setting allows the Node
to pre-allocate space for its children so that the allocations
aren’t made as children are added.
Use of this setting is recommended if you know the maximum number of children (not
including grandchildren, great-grandchildren, etc.) that a Node
will have at any given
time.
use id_tree::NodeBuilder;
let _node_builder = NodeBuilder::new(5).with_child_capacity(3);
Auto Trait Implementations§
impl<T> Freeze for NodeBuilder<T>where
T: Freeze,
impl<T> RefUnwindSafe for NodeBuilder<T>where
T: RefUnwindSafe,
impl<T> Send for NodeBuilder<T>where
T: Send,
impl<T> Sync for NodeBuilder<T>where
T: Sync,
impl<T> Unpin for NodeBuilder<T>where
T: Unpin,
impl<T> UnwindSafe for NodeBuilder<T>where
T: UnwindSafe,
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