Struct device_tree::Node [] [src]

pub struct Node {
    pub name: String,
    pub props: Vec<(String, Vec<u8>)>,
    pub children: Vec<Node>,
}

A single node in the device tree.

Fields

name: String

The name of the node, as it appears in the node path.

props: Vec<(String, Vec<u8>)>

A list of node properties, (key, value).

children: Vec<Node>

Child nodes of this node.

Trait Implementations

impl Debug for Node
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.