pub struct MINIDUMP_BREAKPAD_INFO {
pub validity: u32,
pub dump_thread_id: u32,
pub requesting_thread_id: u32,
}
Expand description
A Breakpad extension containing some additional process information
Taken from the definition in Breakpad’s minidump_format.h.
Fields§
§validity: u32
§dump_thread_id: u32
The Thread ID of the handler thread
requesting_thread_id: u32
The Thread ID of the thread that requested the dump
Trait Implementations§
Source§impl Clone for MINIDUMP_BREAKPAD_INFO
impl Clone for MINIDUMP_BREAKPAD_INFO
Source§fn clone(&self) -> MINIDUMP_BREAKPAD_INFO
fn clone(&self) -> MINIDUMP_BREAKPAD_INFO
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for MINIDUMP_BREAKPAD_INFO
impl Debug for MINIDUMP_BREAKPAD_INFO
Source§impl<'a> TryFromCtx<'a, Endian> for MINIDUMP_BREAKPAD_INFOwhere
MINIDUMP_BREAKPAD_INFO: 'a,
impl<'a> TryFromCtx<'a, Endian> for MINIDUMP_BREAKPAD_INFOwhere
MINIDUMP_BREAKPAD_INFO: 'a,
Source§impl<'a> TryIntoCtx<Endian> for &'a MINIDUMP_BREAKPAD_INFO
impl<'a> TryIntoCtx<Endian> for &'a MINIDUMP_BREAKPAD_INFO
Auto Trait Implementations§
impl Freeze for MINIDUMP_BREAKPAD_INFO
impl RefUnwindSafe for MINIDUMP_BREAKPAD_INFO
impl Send for MINIDUMP_BREAKPAD_INFO
impl Sync for MINIDUMP_BREAKPAD_INFO
impl Unpin for MINIDUMP_BREAKPAD_INFO
impl UnwindSafe for MINIDUMP_BREAKPAD_INFO
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