Struct gimli::read::DebugLineStr
source · pub struct DebugLineStr<R> { /* private fields */ }
Expand description
The DebugLineStr
struct represents the DWARF strings
found in the .debug_line_str
section.
Implementations§
source§impl<'input, Endian> DebugLineStr<EndianSlice<'input, Endian>>where
Endian: Endianity,
impl<'input, Endian> DebugLineStr<EndianSlice<'input, Endian>>where
Endian: Endianity,
sourcepub fn new(debug_line_str_section: &'input [u8], endian: Endian) -> Self
pub fn new(debug_line_str_section: &'input [u8], endian: Endian) -> Self
Construct a new DebugLineStr
instance from the data in the .debug_line_str
section.
It is the caller’s responsibility to read the .debug_line_str
section and
present it as a &[u8]
slice. That means using some ELF loader on
Linux, a Mach-O loader on macOS, etc.
use gimli::{DebugLineStr, LittleEndian};
let debug_str = DebugLineStr::new(read_debug_line_str_section_somehow(), LittleEndian);
source§impl<R: Reader> DebugLineStr<R>
impl<R: Reader> DebugLineStr<R>
sourcepub fn get_str(&self, offset: DebugLineStrOffset<R::Offset>) -> Result<R>
pub fn get_str(&self, offset: DebugLineStrOffset<R::Offset>) -> Result<R>
Lookup a string from the .debug_line_str
section by DebugLineStrOffset.
source§impl<T> DebugLineStr<T>
impl<T> DebugLineStr<T>
sourcepub fn borrow<'a, F, R>(&'a self, borrow: F) -> DebugLineStr<R>where
F: FnMut(&'a T) -> R,
pub fn borrow<'a, F, R>(&'a self, borrow: F) -> DebugLineStr<R>where
F: FnMut(&'a T) -> R,
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§
source§impl<R: Clone> Clone for DebugLineStr<R>
impl<R: Clone> Clone for DebugLineStr<R>
source§fn clone(&self) -> DebugLineStr<R>
fn clone(&self) -> DebugLineStr<R>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl<R: Debug> Debug for DebugLineStr<R>
impl<R: Debug> Debug for DebugLineStr<R>
source§impl<R: Default> Default for DebugLineStr<R>
impl<R: Default> Default for DebugLineStr<R>
source§fn default() -> DebugLineStr<R>
fn default() -> DebugLineStr<R>
Returns the “default value” for a type. Read more
source§impl<R> From<R> for DebugLineStr<R>
impl<R> From<R> for DebugLineStr<R>
source§impl<R> Section<R> for DebugLineStr<R>
impl<R> Section<R> for DebugLineStr<R>
source§fn section_name() -> &'static str
fn section_name() -> &'static str
Returns the ELF section name for this type.