Enum breakpad::ProcessResult [] [src]

#[repr(C)]
pub enum ProcessResult { Ok, MinidumpNotFound, NoMinidumpHeader, ErrorNoThreadList, ErrorGettingThread, ErrorGettingThreadId, DuplicateRequestingThreads, SymbolSupplierInterrupted, }

Result of processing a Minidump or Microdump file. Usually included in ProcessError when the file cannot be processed.

Variants

The dump was processed successfully.

The minidump file was not found.

The minidump file had no header.

The minidump file has no thread list.

There was an error getting one thread's data from the dump.

There was an error getting a thread id from the thread's data.

There was more than one requesting thread.

The dump processing was interrupted (not fatal).

Trait Implementations

impl Debug for ProcessResult
[src]

[src]

Formats the value using the given formatter.

impl Eq for ProcessResult
[src]

impl PartialEq for ProcessResult
[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 ProcessResult
[src]

[src]

Formats the value using the given formatter. Read more