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 | The name of the node, as it appears in the node path. |
props | A list of node properties, |
children | Child nodes of this node. |