Struct minidump_common::format::MINIDUMP_ASSERTION_INFO
source · pub struct MINIDUMP_ASSERTION_INFO {
pub expression: [u16; 128],
pub function: [u16; 128],
pub file: [u16; 128],
pub line: u32,
pub _type: u32,
}Expand description
A Breakpad extension containing information about an assertion that terminated the process
Taken from the definition in Breakpad’s minidump_format.h.
Fields§
§expression: [u16; 128]The assertion that failed, as a 0-terminated UTF16-LE string
function: [u16; 128]The function containing the assertion, as a 0-terminated UTF16-LE string
file: [u16; 128]The source file containing the assertion, as a 0-terminated UTF16-LE string
line: u32The line number in file containing the assertion
_type: u32The assertion type
Trait Implementations§
source§impl Clone for MINIDUMP_ASSERTION_INFO
impl Clone for MINIDUMP_ASSERTION_INFO
source§fn clone(&self) -> MINIDUMP_ASSERTION_INFO
fn clone(&self) -> MINIDUMP_ASSERTION_INFO
Returns a copy 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_ASSERTION_INFO
impl Debug for MINIDUMP_ASSERTION_INFO
source§impl<'a> TryFromCtx<'a, Endian> for MINIDUMP_ASSERTION_INFOwhere
MINIDUMP_ASSERTION_INFO: 'a,
impl<'a> TryFromCtx<'a, Endian> for MINIDUMP_ASSERTION_INFOwhere
MINIDUMP_ASSERTION_INFO: 'a,
source§impl<'a> TryIntoCtx<Endian> for &'a MINIDUMP_ASSERTION_INFO
impl<'a> TryIntoCtx<Endian> for &'a MINIDUMP_ASSERTION_INFO
Auto Trait Implementations§
impl RefUnwindSafe for MINIDUMP_ASSERTION_INFO
impl Send for MINIDUMP_ASSERTION_INFO
impl Sync for MINIDUMP_ASSERTION_INFO
impl Unpin for MINIDUMP_ASSERTION_INFO
impl UnwindSafe for MINIDUMP_ASSERTION_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