[][src]Struct algorithms_edu::algo::graph::tree::with_parent::Node

pub struct Node {
    pub id: usize,
    pub parent: Option<Weak<RefCell<Node>>>,
    pub children: Vec<Rc<RefCell<Node>>>,
}

Representation of a tree node, which has an id, a Vec of children, as well as a Weak reference to its parent

Fields

id: usizeparent: Option<Weak<RefCell<Node>>>children: Vec<Rc<RefCell<Node>>>

Implementations

impl Node[src]

pub fn from_adjacency_list(
    graph: &UnweightedAdjacencyList,
    root: usize
) -> Rc<RefCell<Node>>
[src]

impl Node[src]

pub fn new(id: usize, parent: Option<&Rc<RefCell<Node>>>) -> Rc<RefCell<Node>>[src]

Creates a new node either with or without a parent.

pub fn add_child(parent: &Rc<RefCell<Node>>, child: &Rc<RefCell<Node>>)[src]

Add a child node to a parent node. First, a Weak reference to the parent is created and stored in the child. Then, a clone is pushed onto the parent's Vec of children

Trait Implementations

impl Debug for Node[src]

impl Eq for Node[src]

impl PartialEq<Node> for Node[src]

Two nodes are identical if their ids equal, have the same children, and have the same parent id. #[derive(PartialEq, Eq)] does not work with Weak references, so we need manual implementation.

Auto Trait Implementations

impl !RefUnwindSafe for Node[src]

impl !Send for Node[src]

impl !Sync for Node[src]

impl Unpin for Node[src]

impl !UnwindSafe for Node[src]

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<Q, K> Equivalent<K> for Q where
    Q: Eq + ?Sized,
    K: Borrow<Q> + ?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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,