Struct object::pe::ImageSymbol [−][src]
#[repr(C)]pub struct ImageSymbol { pub name: [u8; 8], pub value: U32Bytes<LE>, pub section_number: U16Bytes<LE>, pub typ: U16Bytes<LE>, pub storage_class: u8, pub number_of_aux_symbols: u8, }
Fields
name: [u8; 8]
If first 4 bytes are 0, then second 4 bytes are offset into string table.
value: U32Bytes<LE>
section_number: U16Bytes<LE>
typ: U16Bytes<LE>
storage_class: u8
number_of_aux_symbols: u8
Implementations
impl ImageSymbol
[src]
impl ImageSymbol
[src]pub fn name<'data>(
&'data self,
strings: StringTable<'data>
) -> Result<&'data [u8]>
[src]
&'data self,
strings: StringTable<'data>
) -> Result<&'data [u8]>
Parse a COFF symbol name.
strings
must be the string table used for symbol names.
pub fn address(
&self,
image_base: u64,
sections: &SectionTable<'_>
) -> Result<u64>
[src]
&self,
image_base: u64,
sections: &SectionTable<'_>
) -> Result<u64>
Return the symbol address.
This takes into account the image base and the section address.
pub fn is_definition(&self) -> bool
[src]
Return true if the symbol is a definition of a function or data object.
impl ImageSymbol
[src]
impl ImageSymbol
[src]pub fn base_type(&self) -> u16
[src]
pub fn derived_type(&self) -> u16
[src]
Trait Implementations
impl Clone for ImageSymbol
[src]
impl Clone for ImageSymbol
[src]fn clone(&self) -> ImageSymbol
[src]
pub fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Copy for ImageSymbol
[src]
impl Pod for ImageSymbol
[src]
Auto Trait Implementations
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> ToOwned for T where
T: Clone,
[src]
impl<T> ToOwned for T where
T: Clone,
[src]type Owned = T
The resulting type after obtaining ownership.