[][src]Enum symbolic::debuginfo::Object

pub enum Object<'d> {
    Breakpad(BreakpadObject<'d>),
    Elf(ElfObject<'d>),
    MachO(MachObject<'d>),
    Pdb(PdbObject<'d>),
    Pe(PeObject<'d>),
    SourceBundle(SourceBundle<'d>),
}

A generic object file providing uniform access to various file formats.

Variants

Breakpad(BreakpadObject<'d>)

Breakpad ASCII symbol.

Elf(ElfObject<'d>)

Executable and Linkable Format, used on Linux.

MachO(MachObject<'d>)

Mach Objects, used on macOS and iOS derivatives.

Pdb(PdbObject<'d>)

Program Database, the debug companion format on Windows.

Pe(PeObject<'d>)

Portable Executable, an extension of COFF used on Windows.

SourceBundle(SourceBundle<'d>)

A source bundle

Implementations

impl<'d> Object<'d>[src]

pub fn test(data: &[u8]) -> bool[src]

Tests whether the buffer could contain an object.

pub fn peek(data: &[u8]) -> FileFormat[src]

Tries to infer the object type from the start of the given buffer.

pub fn parse(data: &'d [u8]) -> Result<Object<'d>, ObjectError>[src]

Tries to parse a supported object from the given slice.

pub fn file_format(&self) -> FileFormat[src]

The container format of this file, corresponding to the variant of this instance.

pub fn code_id(&self) -> Option<CodeId>[src]

The code identifier of this object.

This is a platform-dependent string of variable length that always refers to the code file (e.g. executable or library), even if this object is a debug file. See the variants for the semantics of this code identifier.

pub fn debug_id(&self) -> DebugId[src]

The debug information identifier of this object.

For platforms that use different identifiers for their code and debug files, this always refers to the debug file, regardless whether this object is a debug file or not.

pub fn arch(&self) -> Arch[src]

The CPU architecture of this object.

pub fn kind(&self) -> ObjectKind[src]

The kind of this object.

pub fn load_address(&self) -> u64[src]

The address at which the image prefers to be loaded into memory.

pub fn has_symbols(&self) -> bool[src]

Determines whether this object exposes a public symbol table.

pub fn symbols(&self) -> SymbolIterator<'d>[src]

Returns an iterator over symbols in the public symbol table.

pub fn symbol_map(&self) -> SymbolMap<'d>[src]

Returns an ordered map of symbols in the symbol table.

pub fn has_debug_info(&self) -> bool[src]

Determines whether this object contains debug information.

pub fn debug_session(&self) -> Result<ObjectDebugSession<'d>, ObjectError>[src]

Constructs a debugging session.

A debugging session loads certain information from the object file and creates caches for efficient access to various records in the debug information. Since this can be quite a costly process, try to reuse the debugging session as long as possible.

Objects that do not support debugging or do not contain debugging information return an empty debug session. This only returns an error if constructing the debug session fails due to invalid debug data in the object.

Constructing this session will also work if the object does not contain debugging information, in which case the session will be a no-op. This can be checked via has_debug_info.

pub fn has_unwind_info(&self) -> bool[src]

Determines whether this object contains stack unwinding information.

pub fn has_sources(&self) -> bool[src]

Determines whether this object contains embedded source

pub fn data(&self) -> &'d [u8][src]

Returns the raw data of the underlying buffer.

Trait Implementations

impl<'slf, 'd> AsSelf<'slf> for Object<'d> where
    'd: 'slf, 
[src]

type Ref = Object<'slf>

The Self type with 'slf lifetimes, returned by as_self.

impl<'d> Debug for Object<'d>[src]

impl<'d> ObjectLike for Object<'d>[src]

type Error = ObjectError

Errors thrown when reading information from this object.

type Session = ObjectDebugSession<'d>

A session that allows optimized access to debugging information.

Auto Trait Implementations

impl<'d> !RefUnwindSafe for Object<'d>

impl<'d> Send for Object<'d>

impl<'d> Sync for Object<'d>

impl<'d> Unpin for Object<'d>

impl<'d> !UnwindSafe for Object<'d>

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> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[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.