pub struct CoffSymbol<'data, 'file, R = &'data [u8]> where
R: ReadRef<'data>, { /* private fields */ }
Expand description
A symbol of a CoffFile
.
Trait Implementations
sourceimpl<'data, 'file, R: Clone> Clone for CoffSymbol<'data, 'file, R> where
R: ReadRef<'data>,
impl<'data, 'file, R: Clone> Clone for CoffSymbol<'data, 'file, R> where
R: ReadRef<'data>,
sourcefn clone(&self) -> CoffSymbol<'data, 'file, R>
fn clone(&self) -> CoffSymbol<'data, 'file, R>
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl<'data, 'file, R: Debug> Debug for CoffSymbol<'data, 'file, R> where
R: ReadRef<'data>,
impl<'data, 'file, R: Debug> Debug for CoffSymbol<'data, 'file, R> where
R: ReadRef<'data>,
sourceimpl<'data, 'file, R: ReadRef<'data>> ObjectSymbol<'data> for CoffSymbol<'data, 'file, R>
impl<'data, 'file, R: ReadRef<'data>> ObjectSymbol<'data> for CoffSymbol<'data, 'file, R>
sourcefn index(&self) -> SymbolIndex
fn index(&self) -> SymbolIndex
The index of the symbol.
sourcefn kind(&self) -> SymbolKind
fn kind(&self) -> SymbolKind
Return the kind of this symbol.
sourcefn section(&self) -> SymbolSection
fn section(&self) -> SymbolSection
Returns the section where the symbol is defined.
sourcefn is_undefined(&self) -> bool
fn is_undefined(&self) -> bool
Return true if the symbol is undefined.
sourcefn 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
sourcefn scope(&self) -> SymbolScope
fn scope(&self) -> SymbolScope
Returns the symbol scope.
sourcefn is_global(&self) -> bool
fn is_global(&self) -> bool
Return true if the symbol visible outside of the compilation unit. Read more
sourcefn is_local(&self) -> bool
fn is_local(&self) -> bool
Return true if the symbol is only visible within the compilation unit.
sourcefn flags(&self) -> SymbolFlags<SectionIndex>
fn flags(&self) -> SymbolFlags<SectionIndex>
Symbol flags that are specific to each file format.
sourcefn 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: Copy> Copy for CoffSymbol<'data, 'file, R> where
R: ReadRef<'data>,
Auto Trait Implementations
impl<'data, 'file, R> RefUnwindSafe for CoffSymbol<'data, 'file, R> where
R: RefUnwindSafe,
impl<'data, 'file, R> Send for CoffSymbol<'data, 'file, R> where
R: Sync,
impl<'data, 'file, R> Sync for CoffSymbol<'data, 'file, R> where
R: Sync,
impl<'data, 'file, R> Unpin for CoffSymbol<'data, 'file, R> where
'data: 'file,
impl<'data, 'file, R> UnwindSafe for CoffSymbol<'data, 'file, R> where
R: RefUnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more