Struct gimli::read::DebugLoc [−][src]
pub struct DebugLoc<R> { /* fields omitted */ }
Expand description
The raw contents of the .debug_loc
section.
Implementations
Construct a new DebugLoc
instance from the data in the .debug_loc
section.
It is the caller’s responsibility to read the .debug_loc
section and
present it as a &[u8]
slice. That means using some ELF loader on
Linux, a Mach-O loader on OSX, etc.
use gimli::{DebugLoc, LittleEndian};
let debug_loc = DebugLoc::new(read_debug_loc_section_somehow(), LittleEndian);
Trait Implementations
Returns the ELF section name for this type.
Returns the ELF section name (if any) for this type when used in a dwo file. Read more
Try to load the section using the given loader function.
fn lookup_offset_id(&self, id: ReaderOffsetId) -> Option<(SectionId, R::Offset)> where
R: Reader,
fn lookup_offset_id(&self, id: ReaderOffsetId) -> Option<(SectionId, R::Offset)> where
R: Reader,
Returns the Reader
for this section.
Auto Trait Implementations
impl<R> RefUnwindSafe for DebugLoc<R> where
R: RefUnwindSafe,
impl<R> UnwindSafe for DebugLoc<R> where
R: UnwindSafe,
Blanket Implementations
Mutably borrows from an owned value. Read more