Struct k::NodeImpl [] [src]

pub struct NodeImpl<T> {
    pub parent: Option<Weak<RefCell<NodeImpl<T>>>>,
    pub children: Vec<Node<T>>,
    pub data: T,
}

Generic Node for tree struct

Fields

Trait Implementations

impl<T: Debug> Debug for NodeImpl<T>
[src]

[src]

Formats the value using the given formatter.

impl<T: Clone> Clone for NodeImpl<T>
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more