Struct minidump_common::format::MINIDUMP_EXCEPTION_STREAM
source · [−]pub struct MINIDUMP_EXCEPTION_STREAM {
pub thread_id: u32,
pub __align: u32,
pub exception_record: MINIDUMP_EXCEPTION,
pub thread_context: MINIDUMP_LOCATION_DESCRIPTOR,
}Expand description
Information about the exception that caused the process to terminate.
This struct matches the Microsoft struct of the same name.
Fields
thread_id: u32The identifier of the thread that encountered the exception.
__align: u32exception_record: MINIDUMP_EXCEPTIONDetailed information about the exception encountered.
thread_context: MINIDUMP_LOCATION_DESCRIPTORThe offset of a CPU context record from the time the thread encountered the exception.
The actual data will be one of the CONTEXT_* structs defined here.
Trait Implementations
sourceimpl Clone for MINIDUMP_EXCEPTION_STREAM
impl Clone for MINIDUMP_EXCEPTION_STREAM
sourcefn clone(&self) -> MINIDUMP_EXCEPTION_STREAM
fn clone(&self) -> MINIDUMP_EXCEPTION_STREAM
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for MINIDUMP_EXCEPTION_STREAM
impl Debug for MINIDUMP_EXCEPTION_STREAM
sourceimpl<'a> TryFromCtx<'a, Endian, [u8]> for MINIDUMP_EXCEPTION_STREAM where
MINIDUMP_EXCEPTION_STREAM: 'a,
impl<'a> TryFromCtx<'a, Endian, [u8]> for MINIDUMP_EXCEPTION_STREAM where
MINIDUMP_EXCEPTION_STREAM: 'a,
sourceimpl<'a> TryIntoCtx<Endian, [u8]> for &'a MINIDUMP_EXCEPTION_STREAM
impl<'a> TryIntoCtx<Endian, [u8]> for &'a MINIDUMP_EXCEPTION_STREAM
sourceimpl TryIntoCtx<Endian, [u8]> for MINIDUMP_EXCEPTION_STREAM
impl TryIntoCtx<Endian, [u8]> for MINIDUMP_EXCEPTION_STREAM
Auto Trait Implementations
impl RefUnwindSafe for MINIDUMP_EXCEPTION_STREAM
impl Send for MINIDUMP_EXCEPTION_STREAM
impl Sync for MINIDUMP_EXCEPTION_STREAM
impl Unpin for MINIDUMP_EXCEPTION_STREAM
impl UnwindSafe for MINIDUMP_EXCEPTION_STREAM
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more