Struct object::read::coff::CoffSymbol
source · pub struct CoffSymbol<'data, 'file, R = &'data [u8], Coff = ImageFileHeader>where
R: ReadRef<'data>,
Coff: CoffHeader,{ /* private fields */ }
Expand description
A symbol in a CoffFile
or PeFile
.
Most functionality is provided by the ObjectSymbol
trait implementation.
Implementations§
source§impl<'data, 'file, R: ReadRef<'data>, Coff: CoffHeader> CoffSymbol<'data, 'file, R, Coff>
impl<'data, 'file, R: ReadRef<'data>, Coff: CoffHeader> CoffSymbol<'data, 'file, R, Coff>
sourcepub fn raw_symbol(&self) -> &'data Coff::ImageSymbol
👎Deprecated: Use coff_symbol
instead
pub fn raw_symbol(&self) -> &'data Coff::ImageSymbol
coff_symbol
insteadGet the raw ImageSymbol
struct.
sourcepub fn coff_symbol(&self) -> &'data Coff::ImageSymbol
pub fn coff_symbol(&self) -> &'data Coff::ImageSymbol
Get the raw ImageSymbol
struct.
Trait Implementations§
source§impl<'data, 'file, R, Coff> Clone for CoffSymbol<'data, 'file, R, Coff>
impl<'data, 'file, R, Coff> Clone for CoffSymbol<'data, 'file, R, Coff>
source§fn clone(&self) -> CoffSymbol<'data, 'file, R, Coff>
fn clone(&self) -> CoffSymbol<'data, 'file, R, Coff>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl<'data, 'file, R, Coff> Debug for CoffSymbol<'data, 'file, R, Coff>
impl<'data, 'file, R, Coff> Debug for CoffSymbol<'data, 'file, R, Coff>
source§impl<'data, 'file, R: ReadRef<'data>, Coff: CoffHeader> ObjectSymbol<'data> for CoffSymbol<'data, 'file, R, Coff>
impl<'data, 'file, R: ReadRef<'data>, Coff: CoffHeader> ObjectSymbol<'data> for CoffSymbol<'data, 'file, R, Coff>
source§fn index(&self) -> SymbolIndex
fn index(&self) -> SymbolIndex
The index of the symbol.
source§fn name_bytes(&self) -> Result<&'data [u8]>
fn name_bytes(&self) -> Result<&'data [u8]>
The name of the symbol.
source§fn kind(&self) -> SymbolKind
fn kind(&self) -> SymbolKind
Return the kind of this symbol.
source§fn section(&self) -> SymbolSection
fn section(&self) -> SymbolSection
Returns the section where the symbol is defined.
source§fn is_undefined(&self) -> bool
fn is_undefined(&self) -> bool
Return true if the symbol is undefined.
source§fn is_definition(&self) -> bool
fn is_definition(&self) -> bool
Return true if the symbol is a definition of a function or data object
that has a known address. Read more
source§fn scope(&self) -> SymbolScope
fn scope(&self) -> SymbolScope
Returns the symbol scope.
source§fn is_global(&self) -> bool
fn is_global(&self) -> bool
Return true if the symbol visible outside of the compilation unit. Read more
source§fn is_local(&self) -> bool
fn is_local(&self) -> bool
Return true if the symbol is only visible within the compilation unit.
source§fn flags(&self) -> SymbolFlags<SectionIndex, SymbolIndex>
fn flags(&self) -> SymbolFlags<SectionIndex, SymbolIndex>
Symbol flags that are specific to each file format.
source§fn section_index(&self) -> Option<SectionIndex>
fn section_index(&self) -> Option<SectionIndex>
Returns the section index for the section containing this symbol. Read more
impl<'data, 'file, R, Coff> Copy for CoffSymbol<'data, 'file, R, Coff>
Auto Trait Implementations§
impl<'data, 'file, R, Coff> Freeze for CoffSymbol<'data, 'file, R, Coff>
impl<'data, 'file, R, Coff> RefUnwindSafe for CoffSymbol<'data, 'file, R, Coff>where
<Coff as CoffHeader>::ImageSymbol: RefUnwindSafe,
<Coff as CoffHeader>::ImageSymbolBytes: RefUnwindSafe,
R: RefUnwindSafe,
impl<'data, 'file, R, Coff> Send for CoffSymbol<'data, 'file, R, Coff>where
<Coff as CoffHeader>::ImageSymbol: Sync,
<Coff as CoffHeader>::ImageSymbolBytes: Sync,
R: Sync,
impl<'data, 'file, R, Coff> Sync for CoffSymbol<'data, 'file, R, Coff>where
<Coff as CoffHeader>::ImageSymbol: Sync,
<Coff as CoffHeader>::ImageSymbolBytes: Sync,
R: Sync,
impl<'data, 'file, R, Coff> Unpin for CoffSymbol<'data, 'file, R, Coff>
impl<'data, 'file, R, Coff> UnwindSafe for CoffSymbol<'data, 'file, R, Coff>where
<Coff as CoffHeader>::ImageSymbol: RefUnwindSafe,
<Coff as CoffHeader>::ImageSymbolBytes: RefUnwindSafe,
R: RefUnwindSafe,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)