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>,
    },
}Expand description
A raw entry in .debug_loclists.
Variants§
AddressOrOffsetPair
A location from DWARF version <= 4.
Fields
§
data: Expression<R>expression
BaseAddress
DW_LLE_base_address
BaseAddressx
DW_LLE_base_addressx
Fields
§
addr: DebugAddrIndex<R::Offset>base address
StartxEndx
DW_LLE_startx_endx
Fields
§
begin: DebugAddrIndex<R::Offset>start of range
§
end: DebugAddrIndex<R::Offset>end of range
§
data: Expression<R>expression
StartxLength
DW_LLE_startx_length
OffsetPair
DW_LLE_offset_pair
DefaultLocation
DW_LLE_default_location
Fields
§
data: Expression<R>expression
StartEnd
DW_LLE_start_end
StartLength
DW_LLE_start_length
Implementations§
Trait Implementations§
Source§impl<R: Clone + Reader> Clone for RawLocListEntry<R>
 
impl<R: Clone + Reader> Clone for RawLocListEntry<R>
Source§fn clone(&self) -> RawLocListEntry<R>
 
fn clone(&self) -> RawLocListEntry<R>
Returns a duplicate 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 moreAuto Trait Implementations§
impl<R> Freeze for RawLocListEntry<R>
impl<R> RefUnwindSafe for RawLocListEntry<R>
impl<R> Send for RawLocListEntry<R>
impl<R> Sync for RawLocListEntry<R>
impl<R> Unpin for RawLocListEntry<R>
impl<R> UnwindSafe for RawLocListEntry<R>
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