#[repr(u32)]pub enum DumpType {
Full = 1,
Bmp = 5,
LiveKernelMemory = 6,
KernelMemory = 8,
KernelAndUserMemory = 9,
CompleteMemory = 10,
}
Expand description
Types of kernel crash dump.
Variants§
Full = 1
Bmp = 5
LiveKernelMemory = 6
Produced by .dump /m
.
(22H2+) Produced by TaskMgr > System > Create live kernel Memory Dump.
KernelMemory = 8
Produced by .dump /k
.
KernelAndUserMemory = 9
Produced by .dump /ka
.
CompleteMemory = 10
Produced by .dump /f
.
Trait Implementations§
impl Copy for DumpType
impl StructuralPartialEq for DumpType
Auto Trait Implementations§
impl Freeze for DumpType
impl RefUnwindSafe for DumpType
impl Send for DumpType
impl Sync for DumpType
impl Unpin for DumpType
impl UnwindSafe for DumpType
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