pub struct HardwareInfo {
pub phys_addr_range: Range<u64>,
pub serial_port_base: Option<SerialPortBase>,
pub device_tree: Option<DeviceTreeAddress>,
}
Expand description
Hardware information.
Fields§
§phys_addr_range: Range<u64>
The range of all possible physical memory addresses.
serial_port_base: Option<SerialPortBase>
Serial port base address.
device_tree: Option<DeviceTreeAddress>
Address of the device tree
Trait Implementations§
Auto Trait Implementations§
impl Freeze for HardwareInfo
impl RefUnwindSafe for HardwareInfo
impl Send for HardwareInfo
impl Sync for HardwareInfo
impl Unpin for HardwareInfo
impl UnwindSafe for HardwareInfo
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more