Struct gimli::RangeLists[][src]

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

The DWARF data found in .debug_ranges and .debug_rnglists sections.

Methods

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

Construct a new RangeLists instance from the data in the .debug_ranges and .debug_rnglists sections.

Iterate over the Range list entries starting at the given offset.

The unit_version and address_size must match the compilation unit that the offset was contained in.

The base_address should be obtained from the DW_AT_low_pc attribute in the DW_TAG_compile_unit entry for the compilation unit that contains this range list.

Can be used with FallibleIterator.

Iterate over the RawRngListEntryies starting at the given offset.

The unit_version and address_size must match the compilation unit that the offset was contained in.

This iterator does not perform any processing of the range entries, such as handling base addresses.

Can be used with FallibleIterator.

Trait Implementations

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

Formats the value using the given formatter. Read more

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

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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

Auto Trait Implementations

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

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