Enum addr2line::DebugInfoError [] [src]

pub enum DebugInfoError {
    InvalidDebugLineTarget,
    MissingComplilationUnit,
    UnitWithoutCompilationUnit,
    DanglingEntryOffset,
    RangeInverted,
}

An error occured while traversing the debug symbols in the provided executable.

Variants

DebugLine refers to a file that does not exist

A unit was completely empty (i.e., did not contain a compilation unit)

The first entry in a unit is not a compilation unit

Entry offset points to empty entry

A range was inverted (high > low)

Trait Implementations

impl Debug for DebugInfoError
[src]

Formats the value using the given formatter.

impl Display for DebugInfoError
[src]

Formats the value using the given formatter. Read more

impl Error for DebugInfoError
[src]

A short description of the error. Read more

The lower-level cause of this error, if any. Read more