[][src]Struct minidump::MinidumpBreakpadInfo

pub struct MinidumpBreakpadInfo {
    pub dump_thread_id: Option<u32>,
    pub requesting_thread_id: Option<u32>,
    // some fields omitted
}

Additional information about process state.

MinidumpBreakpadInfo wraps MINIDUMP_BREAKPAD_INFO, which is an optional stream in a minidump that provides additional information about the process state at the time the minidump was generated.

Fields

dump_thread_id: Option<u32>

The thread that wrote the minidump.

requesting_thread_id: Option<u32>

The thread that requested that a minidump be written.

Implementations

impl MinidumpBreakpadInfo[src]

pub fn print<T: Write>(&self, f: &mut T) -> Result<()>[src]

Write a human-readable description of this MinidumpBreakpadInfo to f.

This is very verbose, it is the format used by minidump_dump.

Trait Implementations

impl<'a> MinidumpStream<'a> for MinidumpBreakpadInfo[src]

Auto Trait Implementations

impl RefUnwindSafe for MinidumpBreakpadInfo

impl Send for MinidumpBreakpadInfo

impl Sync for MinidumpBreakpadInfo

impl Unpin for MinidumpBreakpadInfo

impl UnwindSafe for MinidumpBreakpadInfo

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.