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>
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.
Used by DwarfSections::borrow
.
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 xcoff_section_name() -> Option<&'static str>
fn xcoff_section_name() -> Option<&'static str>
Returns the XCOFF section name (if any) for this type when used in a XCOFF
file.
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)