[][src]Enum symbolic::debuginfo::ObjectError

pub enum ObjectError {
    UnsupportedObject,
    Breakpad(BreakpadError),
    Elf(ElfError),
    MachO(MachError),
    Pdb(PdbError),
    Pe(PeError),
    Dwarf(DwarfError),
    SourceBundle(SourceBundleError),
}

An error when dealing with any kind of Object.

Variants

UnsupportedObject

The object file format is not supported.

Breakpad(BreakpadError)

An error in a Breakpad ASCII symbol.

An error in an ELF file.

MachO(MachError)

An error in a Mach object.

An error in a Program Database.

An error in a Portable Executable.

Dwarf(DwarfError)

An error in DWARF debugging information.

SourceBundle(SourceBundleError)

An error in source bundles.

Trait Implementations

impl Debug for ObjectError[src]

impl Display for ObjectError[src]

impl Fail for ObjectError[src]

impl From<ObjectError> for SymCacheError

Auto Trait Implementations

Blanket Implementations

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

impl<T> AsFail for T where
    T: Fail
[src]

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

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

impl<E> Fail for E where
    E: 'static + Error + Send + Sync
[src]

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

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

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.