Struct lief::pdb::public_symbol::PublicSymbol
pub struct PublicSymbol<'a> { /* private fields */ }
Expand description
This class provides general information (RVA, name) about a symbol from the PDB’s public symbol stream (or Public symbol hash stream)
Implementations§
§impl PublicSymbol<'_>
impl PublicSymbol<'_>
pub fn demangled_name(&self) -> String
pub fn demangled_name(&self) -> String
Demangled representation of the symbol
pub fn section_name(&self) -> Option<String>
pub fn section_name(&self) -> Option<String>
Name of the section in which this symbol is defined (e.g. .text
).
Auto Trait Implementations§
impl<'a> RefUnwindSafe for PublicSymbol<'a>
impl<'a> !Send for PublicSymbol<'a>
impl<'a> !Sync for PublicSymbol<'a>
impl<'a> Unpin for PublicSymbol<'a>
impl<'a> UnwindSafe for PublicSymbol<'a>
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