Struct gimli::read::DebugLineStr [−][src]
pub struct DebugLineStr<R> { /* fields omitted */ }
Expand description
The DebugLineStr
struct represents the DWARF strings
found in the .debug_line_str
section.
Implementations
Lookup a string from the .debug_line_str
section by DebugLineStrOffset.
Create a DebugLineStr
section that references the data in self
.
This is useful when R
implements Reader
but T
does not.
Example Usage
// Read the DWARF section into a `Vec` with whatever object loader you're using.
let owned_section: gimli::DebugLineStr<Vec<u8>> = load_section();
// Create a reference to the DWARF section.
let section = owned_section.borrow(|section| {
gimli::EndianSlice::new(§ion, gimli::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 DebugLineStr<R> where
R: RefUnwindSafe,
impl<R> Send for DebugLineStr<R> where
R: Send,
impl<R> Sync for DebugLineStr<R> where
R: Sync,
impl<R> Unpin for DebugLineStr<R> where
R: Unpin,
impl<R> UnwindSafe for DebugLineStr<R> where
R: UnwindSafe,
Blanket Implementations
Mutably borrows from an owned value. Read more