pub type CoffBigSymbol<'data, 'file, R = &'data [u8]> = CoffSymbol<'data, 'file, R, AnonObjectHeaderBigobj>;
Expand description
A symbol in a CoffBigFile
.
Most functionality is provided by the ObjectSymbol
trait implementation.
Aliased Type§
struct CoffBigSymbol<'data, 'file, R = &'data [u8]> {
pub(crate) file: &'file CoffCommon<'data, R, AnonObjectHeaderBigobj>,
pub(crate) index: SymbolIndex,
pub(crate) symbol: &'data ImageSymbolEx,
}
Fields§
§file: &'file CoffCommon<'data, R, AnonObjectHeaderBigobj>
§index: SymbolIndex
§symbol: &'data ImageSymbolEx
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