[][src]Struct 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
[src]

pub fn new(debug_str_section: &'input [u8], endian: Endian) -> Self[src]

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: Reader> DebugStr<R>[src]

pub fn get_str(&self, offset: DebugStrOffset<R::Offset>) -> Result<R>[src]

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>[src]

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

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> Clone for DebugStr<R>[src]

impl<R: Copy> Copy for DebugStr<R>[src]

impl<R: Debug> Debug for DebugStr<R>[src]

impl<R: Default> Default for DebugStr<R>[src]

impl<R> From<R> for DebugStr<R>[src]

impl<R> Section<R> for DebugStr<R>[src]

Auto Trait Implementations

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

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

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

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

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

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.