[][src]Struct gimli::read::DebugPubNames

pub struct DebugPubNames<R: Reader>(_);

The DebugPubNames struct represents the DWARF public names information found in the .debug_pubnames section.

Methods

impl<'input, Endian> DebugPubNames<EndianSlice<'input, Endian>> where
    Endian: Endianity
[src]

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

Construct a new DebugPubNames instance from the data in the .debug_pubnames section.

It is the caller's responsibility to read the .debug_pubnames 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::{DebugPubNames, LittleEndian};

let debug_pubnames =
    DebugPubNames::new(read_debug_pubnames_section_somehow(), LittleEndian);

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

pub fn items(&self) -> PubNamesEntryIter<R>[src]

Iterate the pubnames in the .debug_pubnames section.

use gimli::{DebugPubNames, EndianSlice, LittleEndian};

let debug_pubnames =
    DebugPubNames::new(read_debug_pubnames_section_somehow(), LittleEndian);

let mut iter = debug_pubnames.items();
while let Some(pubname) = iter.next().unwrap() {
  println!("pubname {} found!", pubname.name().to_string_lossy());
}

Trait Implementations

impl<R: Clone + Reader> Clone for DebugPubNames<R>[src]

impl<R: Debug + Reader> Debug for DebugPubNames<R>[src]

impl<R: Reader> From<R> for DebugPubNames<R>[src]

impl<R: Reader> Section<R> for DebugPubNames<R>[src]

Auto Trait Implementations

impl<R> RefUnwindSafe for DebugPubNames<R> where
    R: RefUnwindSafe,
    <R as Reader>::Offset: RefUnwindSafe

impl<R> Send for DebugPubNames<R> where
    R: Send,
    <R as Reader>::Offset: Send

impl<R> Sync for DebugPubNames<R> where
    R: Sync,
    <R as Reader>::Offset: Sync

impl<R> Unpin for DebugPubNames<R> where
    R: Unpin,
    <R as Reader>::Offset: Unpin

impl<R> UnwindSafe for DebugPubNames<R> where
    R: UnwindSafe,
    <R as Reader>::Offset: 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.