Struct gimli::DebugTypes[][src]

pub struct DebugTypes<R: Reader> { /* fields omitted */ }

The DebugTypes struct represents the DWARF type information found in the .debug_types section.

Methods

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

Construct a new DebugTypes instance from the data in the .debug_types section.

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

let debug_types = DebugTypes::new(read_debug_types_section_somehow(), LittleEndian);

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

Iterate the type-units in this .debug_types section.

use gimli::{DebugTypes, LittleEndian};

let debug_types = DebugTypes::new(read_debug_types_section_somehow(), LittleEndian);

let mut iter = debug_types.units();
while let Some(unit) = iter.next().unwrap() {
    println!("unit's length is {}", unit.unit_length());
}

Can be used with FallibleIterator.

Trait Implementations

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

Formats the value using the given formatter. Read more

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

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<R: Copy + Reader> Copy for DebugTypes<R>
[src]

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

Returns the ELF section name for this type.

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

Performs the conversion.

Auto Trait Implementations

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

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