Struct gimli::DebugTypes [] [src]

pub struct DebugTypes<'input, Endian> where
    Endian: Endianity
{ /* fields omitted */ }

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

Methods

impl<'input, Endian> DebugTypes<'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::<LittleEndian>::new(read_debug_types_section_somehow());

Iterate the type-units in this .debug_types section.

use gimli::{DebugTypes, LittleEndian};

let debug_types = DebugTypes::<LittleEndian>::new(read_debug_types_section_somehow());

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<'input, Endian: Debug> Debug for DebugTypes<'input, Endian> where
    Endian: Endianity
[src]

Formats the value using the given formatter.

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

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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