Struct gimli::read::DebugLocLists [−][src]
pub struct DebugLocLists<R> { /* fields omitted */ }
Expand description
The DebugLocLists
struct represents the DWARF data
found in the .debug_loclists
section.
Implementations
Construct a new DebugLocLists
instance from the data in the .debug_loclists
section.
It is the caller’s responsibility to read the .debug_loclists
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::{DebugLocLists, LittleEndian};
let debug_loclists = DebugLocLists::new(read_debug_loclists_section_somehow(), LittleEndian);
Trait Implementations
Returns the “default value” for a type. Read more
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 DebugLocLists<R> where
R: RefUnwindSafe,
impl<R> Send for DebugLocLists<R> where
R: Send,
impl<R> Sync for DebugLocLists<R> where
R: Sync,
impl<R> Unpin for DebugLocLists<R> where
R: Unpin,
impl<R> UnwindSafe for DebugLocLists<R> where
R: UnwindSafe,
Blanket Implementations
Mutably borrows from an owned value. Read more