Enum minidump::CrashReason [] [src]

pub enum CrashReason {
    Unknown,
}

The reason for a process crash.

Variants

Trait Implementations

impl Copy for CrashReason
[src]

impl Clone for CrashReason
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for CrashReason
[src]

[src]

Formats the value using the given formatter.

impl PartialEq for CrashReason
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

1.0.0
[src]

This method tests for !=.

impl Display for CrashReason
[src]

[src]

A string describing the crash reason.

This is OS- and possibly CPU-specific. For example, "EXCEPTION_ACCESS_VIOLATION" (Windows), "EXC_BAD_ACCESS / KERN_INVALID_ADDRESS" (Mac OS X), "SIGSEGV" (other Unix).