[−][src]Struct object::read::pe::SymbolTable
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(header: &ImageFileHeader, data: Bytes<'data>) -> 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 symbols.
pub fn symbol(&self, index: usize) -> Option<&'data ImageSymbol>
[src]
Return the symbol table entry at the given index.
pub fn get<T: Pod>(&self, index: usize) -> Option<&'data T>
[src]
Return the symbol table entry or auxilliary record at the given index.
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,
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.
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>,