Struct gimli::DebugRanges[][src]

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

The DebugRanges struct represents the DWARF strings found in the .debug_ranges section.

Methods

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

Construct a new DebugRanges instance from the data in the .debug_ranges section.

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

let debug_ranges = DebugRanges::new(read_debug_ranges_section_somehow(), LittleEndian);

Trait Implementations

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

Formats the value using the given formatter. Read more

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

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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

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

Returns the ELF section name for this type.

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

Performs the conversion.

Auto Trait Implementations

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

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