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