pub struct MINIDUMP_MODULE_CRASHPAD_INFO_LIST {
pub count: u32,
}Expand description
Additional Crashpad-specific information about modules carried within a minidump file.
This structure augments the information provided by MINIDUMP_MODULE_LIST. The minidump file
must contain a module list stream (::kMinidumpStreamTypeModuleList) in order for this structure
to appear.
MinidumpModuleCrashpadInfoList::count may be less than the value of
MINIDUMP_MODULE_LIST::NumberOfModules because not every MINIDUMP_MODULE structure carried
within the minidump file will necessarily have Crashpad-specific information provided by a
MinidumpModuleCrashpadInfo structure.
See https://crashpad.chromium.org/doxygen/structcrashpad_1_1MinidumpModuleCrashpadInfoList.html
Fields
count: u32The number of key-value pairs present.
Trait Implementations
sourceimpl Clone for MINIDUMP_MODULE_CRASHPAD_INFO_LIST
impl Clone for MINIDUMP_MODULE_CRASHPAD_INFO_LIST
sourcefn clone(&self) -> MINIDUMP_MODULE_CRASHPAD_INFO_LIST
fn clone(&self) -> MINIDUMP_MODULE_CRASHPAD_INFO_LIST
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<'a> TryFromCtx<'a, Endian, [u8]> for MINIDUMP_MODULE_CRASHPAD_INFO_LIST where
MINIDUMP_MODULE_CRASHPAD_INFO_LIST: 'a,
impl<'a> TryFromCtx<'a, Endian, [u8]> for MINIDUMP_MODULE_CRASHPAD_INFO_LIST where
MINIDUMP_MODULE_CRASHPAD_INFO_LIST: 'a,
Auto Trait Implementations
impl RefUnwindSafe for MINIDUMP_MODULE_CRASHPAD_INFO_LIST
impl Send for MINIDUMP_MODULE_CRASHPAD_INFO_LIST
impl Sync for MINIDUMP_MODULE_CRASHPAD_INFO_LIST
impl Unpin for MINIDUMP_MODULE_CRASHPAD_INFO_LIST
impl UnwindSafe for MINIDUMP_MODULE_CRASHPAD_INFO_LIST
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