Struct gimli::Range [] [src]

pub struct Range {
    pub begin: u64,
    pub end: u64,
}

An address range from the .debug_ranges section.

Fields

The beginning address of the range.

The first address past the end of the range.

Methods

impl Range
[src]

Check if this is a range end entry.

This will only occur for raw ranges.

Check if this is a base address selection entry.

A base address selection entry changes the base address that subsequent range entries are relative to. This will only occur for raw ranges.

Add a base address to this range.

This should only be called for raw ranges.

Trait Implementations

impl Debug for Range
[src]

Formats the value using the given formatter.

impl Clone for Range
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for Range
[src]

impl PartialEq for Range
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Eq for Range
[src]

impl Hash for Range
[src]

Feeds this value into the given [Hasher]. Read more

Feeds a slice of this type into the given [Hasher]. Read more