Enum gimli::read::RawLocListEntry [−][src]
pub enum RawLocListEntry<R: Reader> { AddressOrOffsetPair { begin: u64, end: u64, data: Expression<R>, }, BaseAddress { addr: u64, }, BaseAddressx { addr: DebugAddrIndex<R::Offset>, }, StartxEndx { begin: DebugAddrIndex<R::Offset>, end: DebugAddrIndex<R::Offset>, data: Expression<R>, }, StartxLength { begin: DebugAddrIndex<R::Offset>, length: u64, data: Expression<R>, }, OffsetPair { begin: u64, end: u64, data: Expression<R>, }, DefaultLocation { data: Expression<R>, }, StartEnd { begin: u64, end: u64, data: Expression<R>, }, StartLength { begin: u64, length: u64, data: Expression<R>, }, }
A raw entry in .debug_loclists.
Variants
A location from DWARF version <= 4.
Show fields
Fields of AddressOrOffsetPair
begin: u64
Start of range. May be an address or an offset.
end: u64
End of range. May be an address or an offset.
data: Expression<R>
expression
DW_LLE_base_address
DW_LLE_base_addressx
Show fields
Fields of BaseAddressx
addr: DebugAddrIndex<R::Offset>
base address
DW_LLE_startx_endx
Show fields
Fields of StartxEndx
begin: DebugAddrIndex<R::Offset>
start of range
end: DebugAddrIndex<R::Offset>
end of range
data: Expression<R>
expression
DW_LLE_startx_length
Show fields
Fields of StartxLength
begin: DebugAddrIndex<R::Offset>
start of range
length: u64
length of range
data: Expression<R>
expression
DW_LLE_offset_pair
Show fields
Fields of OffsetPair
DW_LLE_default_location
Show fields
Fields of DefaultLocation
data: Expression<R>
expression
DW_LLE_start_end
Show fields
Fields of StartEnd
DW_LLE_start_length
Show fields
Fields of StartLength
Trait Implementations
Auto Trait Implementations
impl<R> Send for RawLocListEntry<R> where
R: Send,
<R as Reader>::Offset: Send,
R: Send,
<R as Reader>::Offset: Send,
impl<R> Sync for RawLocListEntry<R> where
R: Sync,
<R as Reader>::Offset: Sync,
R: Sync,
<R as Reader>::Offset: Sync,
impl<R> Unpin for RawLocListEntry<R> where
R: Unpin,
<R as Reader>::Offset: Unpin,
R: Unpin,
<R as Reader>::Offset: Unpin,
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> ToOwned for T where
T: Clone,
[src]
impl<T> ToOwned for T where
T: Clone,
[src]type Owned = T
The resulting type after obtaining ownership.