pub struct SystemInfo {
pub framebuffer: Option<RawFrameBufferInfo>,
pub rsdp_addr: Option<PhysAddr>,
pub ramdisk_addr: Option<u64>,
pub ramdisk_len: u64,
}
Expand description
Required system information that should be queried from the BIOS or UEFI firmware.
Fields§
§framebuffer: Option<RawFrameBufferInfo>
Information about the (still unmapped) framebuffer.
rsdp_addr: Option<PhysAddr>
Address of the Root System Description Pointer structure of the ACPI standard.
ramdisk_addr: Option<u64>
§ramdisk_len: u64
Trait Implementations§
Source§impl Clone for SystemInfo
impl Clone for SystemInfo
Source§fn clone(&self) -> SystemInfo
fn clone(&self) -> SystemInfo
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for SystemInfo
impl Debug for SystemInfo
impl Copy for SystemInfo
Auto Trait Implementations§
impl Freeze for SystemInfo
impl RefUnwindSafe for SystemInfo
impl Send for SystemInfo
impl Sync for SystemInfo
impl Unpin for SystemInfo
impl UnwindSafe for SystemInfo
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)