Struct object::read::coff::SymbolTable[][src]

pub struct SymbolTable<'data> { /* fields omitted */ }
Expand description

A table of symbol entries in a COFF or PE file.

Also includes the string table used for the symbol names.

Implementations

impl<'data> SymbolTable<'data>[src]

pub fn parse<R: ReadRef<'data>>(
    header: &ImageFileHeader,
    data: R
) -> Result<Self>
[src]

Read the symbol table.

pub fn strings(&self) -> StringTable<'data>[src]

Return the string table used for the symbol names.

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

Return true if the symbol table is empty.

pub fn len(&self) -> usize[src]

The number of symbol table entries.

This includes auxiliary symbol table entries.

pub fn iter<'table>(&'table self) -> SymbolIterator<'data, 'table>

Notable traits for SymbolIterator<'data, 'table>

impl<'data, 'table> Iterator for SymbolIterator<'data, 'table> type Item = (usize, &'data ImageSymbol);
[src]

Iterate over the symbols.

pub fn symbol(&self, index: usize) -> Result<&'data ImageSymbol>[src]

Return the symbol table entry at the given index.

pub fn aux_function(
    &self,
    index: usize
) -> Result<&'data ImageAuxSymbolFunction>
[src]

Return the auxiliary function symbol for the symbol table entry at the given index.

Note that the index is of the symbol, not the first auxiliary record.

pub fn aux_section(&self, index: usize) -> Result<&'data ImageAuxSymbolSection>[src]

Return the auxiliary section symbol for the symbol table entry at the given index.

Note that the index is of the symbol, not the first auxiliary record.

pub fn aux_file_name(&self, index: usize, aux_count: u8) -> Result<&'data [u8]>[src]

Return the auxiliary file name for the symbol table entry at the given index.

Note that the index is of the symbol, not the first auxiliary record.

pub fn get<T: Pod>(&self, index: usize, offset: usize) -> Result<&'data T>[src]

Return the symbol table entry or auxiliary record at the given index and offset.

pub fn map<Entry: SymbolMapEntry, F: Fn(&'data ImageSymbol) -> Option<Entry>>(
    &self,
    f: F
) -> SymbolMap<Entry>
[src]

Construct a map from addresses to a user-defined map entry.

Trait Implementations

impl<'data> Debug for SymbolTable<'data>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl<'data> RefUnwindSafe for SymbolTable<'data>

impl<'data> Send for SymbolTable<'data>

impl<'data> Sync for SymbolTable<'data>

impl<'data> Unpin for SymbolTable<'data>

impl<'data> UnwindSafe for SymbolTable<'data>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

pub fn type_id(&self) -> TypeId[src]

Gets the TypeId of self. Read more

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

pub fn borrow(&self) -> &T[src]

Immutably borrows from an owned value. Read more

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

pub fn borrow_mut(&mut self) -> &mut T[src]

Mutably borrows from an owned value. Read more

impl<T> From<T> for T[src]

pub fn from(t: T) -> T[src]

Performs the conversion.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

pub fn into(self) -> U[src]

Performs the conversion.

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.

pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]

Performs the conversion.

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.

pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]

Performs the conversion.