[][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).

Implementations

impl ProcessResult[src]

pub fn is_usable(self) -> bool[src]

Indicates whether the process state is usable.

Depending on the result, the process state might only contain partial information. For a full minidump, check for ProcessResult::Ok instead.

Trait Implementations

impl Clone for ProcessResult[src]

impl Copy for ProcessResult[src]

impl Debug for ProcessResult[src]

impl<'de> Deserialize<'de> for ProcessResult[src]

impl Display for ProcessResult[src]

impl Eq for ProcessResult[src]

impl PartialEq<ProcessResult> for ProcessResult[src]

impl Serialize for ProcessResult[src]

impl StructuralEq for ProcessResult[src]

impl StructuralPartialEq for ProcessResult[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

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

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

type Owned = T

The resulting type after obtaining ownership.

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

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.