Enum symbolic_debuginfo::ObjectErrorKind[][src]

pub enum ObjectErrorKind {
    UnsupportedObject,
    BadObject,
    UnsupportedSymbolTable,
}

The kind of an ObjectError.

Variants

The Object file format is not supported.

The Object file contains invalid data.

Reading symbol tables is not supported for this Object file format.

Trait Implementations

impl Debug for ObjectErrorKind
[src]

Formats the value using the given formatter. Read more

impl Copy for ObjectErrorKind
[src]

impl Clone for ObjectErrorKind
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Eq for ObjectErrorKind
[src]

impl PartialEq for ObjectErrorKind
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl From<ObjectErrorKind> for ObjectError
[src]

Performs the conversion.

Auto Trait Implementations