pub struct InitrdInfo {
pub gpa: u64,
pub size: u64,
}
Expand description
Information returned about the initrd loaded.
Fields§
§gpa: u64
The gpa the initrd was loaded at.
size: u64
The size in bytes of the initrd loaded. Note that the region imported is aligned up to page size.
Trait Implementations§
Source§impl Debug for InitrdInfo
impl Debug for InitrdInfo
Source§impl Default for InitrdInfo
impl Default for InitrdInfo
Source§fn default() -> InitrdInfo
fn default() -> InitrdInfo
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for InitrdInfo
impl RefUnwindSafe for InitrdInfo
impl Send for InitrdInfo
impl Sync for InitrdInfo
impl Unpin for InitrdInfo
impl UnwindSafe for InitrdInfo
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