pub struct WindowsKernelInformation {
pub base_address: Va,
pub version_major: u16,
pub version_minor: u16,
pub codeview: CodeView,
}Available on crate feature
os-windows only.Expand description
Information about the Windows kernel image.
Fields§
§base_address: VaBase virtual address where the kernel image is loaded.
version_major: u16Major version number of the Windows kernel.
version_minor: u16Minor version number of the Windows kernel.
codeview: CodeViewCodeView debugging information for the kernel image.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for WindowsKernelInformation
impl RefUnwindSafe for WindowsKernelInformation
impl Send for WindowsKernelInformation
impl Sync for WindowsKernelInformation
impl Unpin for WindowsKernelInformation
impl UnwindSafe for WindowsKernelInformation
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