[][src]Struct gimli::read::DebugLineStr

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

The DebugLineStr struct represents the DWARF strings found in the .debug_line_str section.

Implementations

impl<R: Reader> DebugLineStr<R>[src]

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

Lookup a string from the .debug_line_str section by DebugLineStrOffset.

impl<T> DebugLineStr<T>[src]

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

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

Trait Implementations

impl<R: Clone> Clone for DebugLineStr<R>[src]

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

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

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

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

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

Auto Trait Implementations

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

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.