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
sourceimpl<R: Clone + Reader> Clone for LocationListEntry<R>
impl<R: Clone + Reader> Clone for LocationListEntry<R>
sourcefn clone(&self) -> LocationListEntry<R>
fn clone(&self) -> LocationListEntry<R>
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl<R: Debug + Reader> Debug for LocationListEntry<R>
impl<R: Debug + Reader> Debug for LocationListEntry<R>
sourceimpl<R: Hash + Reader> Hash for LocationListEntry<R>
impl<R: Hash + Reader> Hash for LocationListEntry<R>
sourceimpl<R: PartialEq + Reader> PartialEq<LocationListEntry<R>> for LocationListEntry<R>
impl<R: PartialEq + Reader> PartialEq<LocationListEntry<R>> for LocationListEntry<R>
sourcefn 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 ==
. Read more
sourcefn ne(&self, other: &LocationListEntry<R>) -> bool
fn ne(&self, other: &LocationListEntry<R>) -> bool
This method tests for !=
.
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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more