Struct device_tree::DeviceTree [] [src]

pub struct DeviceTree {
    pub version: u32,
    pub boot_cpuid_phys: u32,
    pub reserved: Vec<(u64, u64)>,
    pub root: Node,
}

Device tree structure.

Fields

Version, as indicated by version header

The number of the CPU the system boots from

A list of tuples of (offset, length), indicating reserved memory

The root node.

Methods

impl DeviceTree
[src]

Load a device tree from a memory buffer.

Trait Implementations

impl Debug for DeviceTree
[src]

Formats the value using the given formatter.