[]Struct symbolic::debuginfo::dwarf::gimli::read::DebugStr

pub struct DebugStr<R> { /* fields omitted */ }

The DebugStr struct represents the DWARF strings found in the .debug_str section.

Implementations

impl<'input, Endian> DebugStr<EndianSlice<'input, Endian>> where
    Endian: Endianity

pub fn new(
    debug_str_section: &'input [u8],
    endian: Endian
) -> DebugStr<EndianSlice<'input, Endian>>

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);

impl<R> DebugStr<R> where
    R: Reader

pub fn get_str(
    &self,
    offset: DebugStrOffset<<R as Reader>::Offset>
) -> Result<R, Error>

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()));

impl<T> DebugStr<T>

pub fn borrow<'a, F, R>(&'a self, borrow: F) -> DebugStr<R> where
    F: FnMut(&'a T) -> R, 

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(&section, gimli::LittleEndian)
});

Trait Implementations

impl<R> Clone for DebugStr<R> where
    R: Clone

impl<R> Copy for DebugStr<R> where
    R: Copy

impl<R> Debug for DebugStr<R> where
    R: Debug

impl<R> Default for DebugStr<R> where
    R: Default

impl<R> From<R> for DebugStr<R>

impl<R> Section<R> for DebugStr<R>

Auto Trait Implementations

impl<R> RefUnwindSafe for DebugStr<R> where
    R: RefUnwindSafe
[src]

impl<R> Send for DebugStr<R> where
    R: Send
[src]

impl<R> Sync for DebugStr<R> where
    R: Sync
[src]

impl<R> Unpin for DebugStr<R> where
    R: Unpin
[src]

impl<R> UnwindSafe for DebugStr<R> where
    R: UnwindSafe
[src]

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<!> for T[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.