pub struct MINIDUMP_THREAD {
    pub thread_id: u32,
    pub suspend_count: u32,
    pub priority_class: u32,
    pub priority: u32,
    pub teb: u64,
    pub stack: MINIDUMP_MEMORY_DESCRIPTOR,
    pub thread_context: MINIDUMP_LOCATION_DESCRIPTOR,
}
Expand description

Information about a single thread from a minidump

This struct matches the Microsoft struct of the same name.

Fields

thread_id: u32

The identifier of this thread

suspend_count: u32

The suspend count for this thread

If greater than zero, the thread is suspended.

priority_class: u32

The priority class of the thread

See Scheduling Priorities on MSDN.

priority: u32

The priority level of the thread

teb: u64

The thread environment block

stack: MINIDUMP_MEMORY_DESCRIPTOR

The location and base address of this thread’s stack memory

thread_context: MINIDUMP_LOCATION_DESCRIPTOR

The location of a CPU-specific CONTEXT_ struct for this thread’s CPU context

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.