pub enum PlatformInfo {
Multiboot {
command_line: Option<&'static str>,
multiboot_info_addr: NonZeroU64,
},
Uhyve {
has_pci: bool,
num_cpus: NonZeroU64,
cpu_freq: Option<NonZeroU32>,
boot_time: OffsetDateTime,
},
LinuxBootParams {
command_line: Option<&'static str>,
boot_params_addr: NonZeroU64,
},
Fdt,
}
Expand description
Platform information.
This struct holds platform and loader specific information.
Variants§
Multiboot
Multiboot.
Fields
§
multiboot_info_addr: NonZeroU64
Multiboot boot information address.
Uhyve
Uhyve.
Fields
§
num_cpus: NonZeroU64
Total number of CPUs available.
§
cpu_freq: Option<NonZeroU32>
CPU frequency in kHz.
§
boot_time: OffsetDateTime
Boot time.
LinuxBootParams
Linux Boot Parameters.
Fields
§
boot_params_addr: NonZeroU64
Address to Linux boot parameters.
Fdt
FDT.
This is a transitional platform for migrating to FDTs.
The real platform information is stored in HardwareInfo::device_tree
.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for PlatformInfo
impl RefUnwindSafe for PlatformInfo
impl Send for PlatformInfo
impl Sync for PlatformInfo
impl Unpin for PlatformInfo
impl UnwindSafe for PlatformInfo
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