Trait symbolic::debuginfo::ObjectLike[][src]

pub trait ObjectLike<'data, 'object> {
    type Error;
    type Session: for<'session> DebugSession<'session>;
    type SymbolIterator: Iterator;
    pub fn file_format(&self) -> FileFormat;
pub fn code_id(&self) -> Option<CodeId>;
pub fn debug_id(&self) -> DebugId;
pub fn arch(&self) -> Arch;
pub fn kind(&self) -> ObjectKind;
pub fn load_address(&self) -> u64;
pub fn has_symbols(&self) -> bool;
pub fn symbols(&'object self) -> Self::SymbolIterator;
pub fn symbol_map(&self) -> SymbolMap<'data>;
pub fn has_debug_info(&self) -> bool;
pub fn debug_session(&'object self) -> Result<Self::Session, Self::Error>;
pub fn has_unwind_info(&self) -> bool;
pub fn has_sources(&self) -> bool; }

An object containing debug information.

Associated Types

type Error[src]

Errors thrown when reading information from this object.

type Session: for<'session> DebugSession<'session>[src]

A session that allows optimized access to debugging information.

type SymbolIterator: Iterator[src]

The iterator over the symbols in the public symbol table.

Loading content...

Required methods

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

The container format of this file.

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

The code identifier of this object.

The identifier can be None if it cannot be determined from the object file, for instance, because the identifier was stripped in the build process.

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

The debug information identifier of this object.

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(&'object self) -> Self::SymbolIterator[src]

Returns an iterator over symbols in the public symbol table.

pub fn symbol_map(&self) -> SymbolMap<'data>[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(&'object self) -> Result<Self::Session, Self::Error>[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.

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 sources.

Loading content...

Implementors

impl<'data, 'object> ObjectLike<'data, 'object> for Object<'data> where
    'data: 'object, 
[src]

type Error = ObjectError

type Session = ObjectDebugSession<'data>

type SymbolIterator = SymbolIterator<'data, 'object>

impl<'data, 'object> ObjectLike<'data, 'object> for BreakpadObject<'data> where
    'data: 'object, 
[src]

type Error = BreakpadError

type Session = BreakpadDebugSession<'data>

type SymbolIterator = BreakpadSymbolIterator<'data>

impl<'data, 'object> ObjectLike<'data, 'object> for ElfObject<'data> where
    'data: 'object, 
[src]

type Error = DwarfError

type Session = DwarfDebugSession<'data>

type SymbolIterator = ElfSymbolIterator<'data, 'object>

impl<'data, 'object> ObjectLike<'data, 'object> for MachObject<'data> where
    'data: 'object, 
[src]

type Error = DwarfError

type Session = DwarfDebugSession<'data>

type SymbolIterator = MachOSymbolIterator<'data>

impl<'data, 'object> ObjectLike<'data, 'object> for PdbObject<'data> where
    'data: 'object, 
[src]

type Error = PdbError

type Session = PdbDebugSession<'data>

type SymbolIterator = PdbSymbolIterator<'data, 'object>

impl<'data, 'object> ObjectLike<'data, 'object> for PeObject<'data> where
    'data: 'object, 
[src]

type Error = PeError

type Session = PeDebugSession<'data>

type SymbolIterator = PeSymbolIterator<'data, 'object>

impl<'data, 'object> ObjectLike<'data, 'object> for SourceBundle<'data> where
    'data: 'object, 
[src]

type Error = SourceBundleError

type Session = SourceBundleDebugSession<'data>

type SymbolIterator = Empty<Symbol<'data>>

impl<'data, 'object> ObjectLike<'data, 'object> for WasmObject<'data> where
    'data: 'object, 
[src]

type Error = DwarfError

type Session = DwarfDebugSession<'data>

type SymbolIterator = WasmSymbolIterator<'data, 'object>

Loading content...