Struct gimli::LocationListEntry[][src]

pub struct LocationListEntry<R: Reader> {
    pub range: Range,
    pub data: Expression<R>,
}

A location list entry from the .debug_loc or .debug_loclists sections.

Fields

The address range that this location is valid for.

The data containing a single location description.

Trait Implementations

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

Formats the value using the given formatter. Read more

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

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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

impl<R: PartialEq + Reader> PartialEq for LocationListEntry<R>
[src]

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

This method tests for !=.

impl<R: Eq + Reader> Eq for LocationListEntry<R>
[src]

impl<R: Hash + Reader> Hash for LocationListEntry<R>
[src]

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

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

Auto Trait Implementations

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

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