Struct gimli::read::LocationListEntry [−][src]
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: RangeThe address range that this location is valid for.
data: Expression<R>The data containing a single location description.
Trait Implementations
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.
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
Mutably borrows from an owned value. Read more
Compare self to key and return true if they are equal.