Struct gimli::read::DebugStr [−][src]
pub struct DebugStr<R> { /* fields omitted */ }Expand description
The DebugStr struct represents the DWARF strings
found in the .debug_str section.
Implementations
Construct a new DebugStr instance from the data in the .debug_str
section.
It is the caller’s responsibility to read the .debug_str 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::{DebugStr, LittleEndian};
let debug_str = DebugStr::new(read_debug_str_section_somehow(), LittleEndian);Lookup a string from the .debug_str section by DebugStrOffset.
use gimli::{DebugStr, DebugStrOffset, LittleEndian};
let debug_str = DebugStr::new(read_debug_str_section_somehow(), LittleEndian);
println!("Found string {:?}", debug_str.get_str(debug_str_offset_somehow()));Create a DebugStr 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::DebugStr<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 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 DebugStr<R> where
R: RefUnwindSafe,
impl<R> UnwindSafe for DebugStr<R> where
R: UnwindSafe,
Blanket Implementations
Mutably borrows from an owned value. Read more