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