Struct id_tree::NodeBuilder[][src]

pub struct NodeBuilder<T> { /* fields omitted */ }

A Node builder that provides more control over how a Node is created.

Implementations

impl<T> NodeBuilder<T>[src]

pub fn new(data: T) -> NodeBuilder<T>[src]

Creates a new NodeBuilder with the required data.

use id_tree::NodeBuilder;

let _node_builder = NodeBuilder::new(5);

pub fn with_child_capacity(self, child_capacity: usize) -> NodeBuilder<T>[src]

Set the child capacity of the NodeBuilder.

As Nodes 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);

pub fn build(self) -> Node<T>[src]

Build a Node based upon the current settings in the NodeBuilder.

use id_tree::NodeBuilder;
use id_tree::Node;

let node: Node<i32> = NodeBuilder::new(5)
        .with_child_capacity(3)
        .build();

assert_eq!(node.data(), &5);
assert_eq!(node.children().capacity(), 3);

Auto Trait Implementations

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

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.