Struct gimli::read::LocationListEntry
source · pub struct LocationListEntry<R: Reader> {
pub range: Range,
pub data: Expression<R>,
}
Expand description
A location list entry from the .debug_loc
or .debug_loclists
sections.
Fields§
§range: Range
The address range that this location is valid for.
data: Expression<R>
The data containing a single location description.
Trait Implementations§
source§impl<R: Clone + Reader> Clone for LocationListEntry<R>
impl<R: Clone + Reader> Clone for LocationListEntry<R>
source§fn clone(&self) -> LocationListEntry<R>
fn clone(&self) -> LocationListEntry<R>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl<R: PartialEq + Reader> PartialEq<LocationListEntry<R>> for LocationListEntry<R>
impl<R: PartialEq + Reader> PartialEq<LocationListEntry<R>> for LocationListEntry<R>
source§fn eq(&self, other: &LocationListEntry<R>) -> bool
fn eq(&self, other: &LocationListEntry<R>) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.