[][src]Enum symbolic_minidump::processor::ProcessResult

#[repr(u32)]
pub enum ProcessResult { Ok, MinidumpNotFound, NoMinidumpHeader, NoThreadList, InvalidThreadIndex, InvalidThreadId, DuplicateRequestingThreads, SymbolSupplierInterrupted, }

Result of processing a Minidump or Microdump file.

Usually included in ProcessError when the file cannot be processed.

Variants

Ok

The dump was processed successfully.

MinidumpNotFound

The minidump file was not found or the buffer was empty.

NoMinidumpHeader

The minidump file had no header.

NoThreadList

The minidump file has no thread list.

InvalidThreadIndex

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

InvalidThreadId

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

DuplicateRequestingThreads

There was more than one requesting thread.

SymbolSupplierInterrupted

The dump processing was interrupted (not fatal).

Trait Implementations

impl Eq for ProcessResult[src]

impl Copy for ProcessResult[src]

impl PartialEq<ProcessResult> for ProcessResult[src]

#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0
[src]

This method tests for !=.

impl Clone for ProcessResult[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for ProcessResult[src]

impl Display for ProcessResult[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Erased for T