[][src]Struct gimli::read::DebugPubTypes

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

The DebugPubTypes struct represents the DWARF public types information found in the .debug_info section.

Implementations

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

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

Construct a new DebugPubTypes instance from the data in the .debug_pubtypes section.

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

let debug_pubtypes =
    DebugPubTypes::new(read_debug_pubtypes_somehow(), LittleEndian);

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

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

Iterate the pubtypes in the .debug_pubtypes section.

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

let debug_pubtypes =
    DebugPubTypes::new(read_debug_pubtypes_section_somehow(), LittleEndian);

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

Trait Implementations

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

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

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

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

Auto Trait Implementations

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

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

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

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

impl<R> UnwindSafe for DebugPubTypes<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.