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
impl<R: Copy + Reader> Copy for LocationListEntry<R>
impl<R: Eq + Reader> Eq for LocationListEntry<R>
impl<R: Reader> StructuralEq for LocationListEntry<R>
impl<R: Reader> StructuralPartialEq for LocationListEntry<R>
Auto Trait Implementations§
impl<R> RefUnwindSafe for LocationListEntry<R>where
R: RefUnwindSafe,
impl<R> Send for LocationListEntry<R>where
R: Send,
impl<R> Sync for LocationListEntry<R>where
R: Sync,
impl<R> Unpin for LocationListEntry<R>where
R: Unpin,
impl<R> UnwindSafe for LocationListEntry<R>where
R: UnwindSafe,
Blanket Implementations§
source§impl<T> CallHasher for Twhere
T: Hash + ?Sized,
impl<T> CallHasher for Twhere
T: Hash + ?Sized,
source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.