Enum addr2line::DebugInfoError [] [src]

pub enum DebugInfoError {
    InvalidDebugLineTarget,
    MissingComplilationUnit,
    UnitWithoutCompilationUnit,
    SubroutineMissingName(usizeusize),
    DanglingAbstractOrigin,
    RangeBothContiguousAndNot,
    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

A subroutine (unit offset, routine offset) has no name

Abstract origin points to empty entry

Asked to parse non-contiguous range as contiguous.

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.

impl Error for DebugInfoError
[src]

A short description of the error. Read more

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