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

pub struct Node {
    pub id: usize,
    pub children: Vec<Node>,
}

Representation of a tree node, which has an id and a Vec of children. children is empty if the node does not have children.

Fields

id: usizechildren: Vec<Node>

Implementations

impl Node[src]

pub fn height(&self) -> usize[src]

impl Node[src]

pub fn encode(&self) -> Vec<u8>[src]

impl Node[src]

impl Node[src]

pub fn new(id: usize) -> Self[src]

Creates a new node without children

Trait Implementations

impl Debug for Node[src]

impl Eq for Node[src]

impl PartialEq<Node> for Node[src]

impl StructuralEq for Node[src]

impl StructuralPartialEq for Node[src]

Auto Trait Implementations

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>,