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: u32
The line number in file
containing the assertion
_type: u32
The 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 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_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 Freeze for MINIDUMP_ASSERTION_INFO
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