Struct gimli::DebugPubNames [] [src]

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<EndianBuf<'input, Endian>> where
    Endian: Endianity
[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]

Iterate the pubnames in the .debug_pubnames section.

use gimli::{DebugPubNames, EndianBuf, 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: Debug + Reader> Debug for DebugPubNames<R>
[src]

Formats the value using the given formatter.

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

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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

Returns the ELF section name for this type.

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

Performs the conversion.