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 moreimpl<R: Copy + Reader> Copy for LocationListEntry<R>
impl<R: Eq + Reader> Eq for LocationListEntry<R>
impl<R: Reader> StructuralPartialEq for LocationListEntry<R>
Auto Trait Implementations§
impl<R> Freeze for LocationListEntry<R>where
R: Freeze,
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.