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

Fields

§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

A location from DWARF version <= 4.

§

BaseAddress

Fields

§addr: u64

base address

DW_LLE_base_address

§

BaseAddressx

Fields

§addr: DebugAddrIndex<R::Offset>

base address

DW_LLE_base_addressx

§

StartxEndx

Fields

§begin: DebugAddrIndex<R::Offset>

start of range

§end: DebugAddrIndex<R::Offset>

end of range

§data: Expression<R>

expression

DW_LLE_startx_endx

§

StartxLength

Fields

§begin: DebugAddrIndex<R::Offset>

start of range

§length: u64

length of range

§data: Expression<R>

expression

DW_LLE_startx_length

§

OffsetPair

Fields

§begin: u64

start of range

§end: u64

end of range

§data: Expression<R>

expression

DW_LLE_offset_pair

§

DefaultLocation

Fields

§data: Expression<R>

expression

DW_LLE_default_location

§

StartEnd

Fields

§begin: u64

start of range

§end: u64

end of range

§data: Expression<R>

expression

DW_LLE_start_end

§

StartLength

Fields

§begin: u64

start of range

§length: u64

length of range

§data: Expression<R>

expression

DW_LLE_start_length

Trait Implementations§

source§

impl<R: Clone + Reader> Clone for RawLocListEntry<R>
where R::Offset: Clone,

source§

fn clone(&self) -> RawLocListEntry<R>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<R: Debug + Reader> Debug for RawLocListEntry<R>
where R::Offset: Debug,

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl<R> RefUnwindSafe for RawLocListEntry<R>

§

impl<R> Send for RawLocListEntry<R>
where R: Send, <R as Reader>::Offset: Send,

§

impl<R> Sync for RawLocListEntry<R>
where R: Sync, <R as Reader>::Offset: Sync,

§

impl<R> Unpin for RawLocListEntry<R>
where R: Unpin, <R as Reader>::Offset: Unpin,

§

impl<R> UnwindSafe for RawLocListEntry<R>
where R: UnwindSafe, <R as Reader>::Offset: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.