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 ==
.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> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more