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 OSX, 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>
pub fn borrow<'a, F, R>(&'a self, borrow: F) -> DebugLineStr<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.
Source§fn dwo_section_name() -> Option<&'static str>
fn dwo_section_name() -> Option<&'static str>
Returns the ELF section name (if any) for this type when used in a dwo
file.
Source§fn load<F, E>(f: F) -> Result<Self, E>
fn load<F, E>(f: F) -> Result<Self, E>
Try to load the section using the given loader function.
Source§fn dwp_range(&self, offset: u32, size: u32) -> Result<Self>where
R: Reader,
fn dwp_range(&self, offset: u32, size: u32) -> Result<Self>where
R: Reader,
Returns the subrange of the section that is the contribution of
a unit in a
.dwp
file.Source§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.impl<R: Copy> Copy for DebugLineStr<R>
Auto Trait Implementations§
impl<R> Freeze for DebugLineStr<R>where
R: Freeze,
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§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more