Struct object::read::coff::SymbolTable [−][src]
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]
header: &ImageFileHeader,
data: R
) -> Result<Self>
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]
Notable traits for SymbolIterator<'data, 'table>
impl<'data, 'table> Iterator for SymbolIterator<'data, 'table> type Item = (usize, &'data ImageSymbol);
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]
&self,
index: usize
) -> Result<&'data ImageAuxSymbolFunction>
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]
&self,
f: F
) -> SymbolMap<Entry>
Construct a map from addresses to a user-defined map entry.
Trait Implementations
Auto Trait Implementations
impl<'data> Send for SymbolTable<'data>
impl<'data> Sync for SymbolTable<'data>
impl<'data> Unpin for SymbolTable<'data>
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
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]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,