[][src]Enum gimli::read::RawLocListEntry

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

AddressOrOffsetPair

A location from DWARF version <= 4.

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

BaseAddress

DW_LLE_base_address

Fields of BaseAddress

addr: u64

base address

BaseAddressx

DW_LLE_base_addressx

Fields of BaseAddressx

addr: DebugAddrIndex<R::Offset>

base address

StartxEndx

DW_LLE_startx_endx

Fields of StartxEndx

begin: DebugAddrIndex<R::Offset>

start of range

end: DebugAddrIndex<R::Offset>

end of range

data: Expression<R>

expression

StartxLength

DW_LLE_startx_length

Fields of StartxLength

begin: DebugAddrIndex<R::Offset>

start of range

length: u64

length of range

data: Expression<R>

expression

OffsetPair

DW_LLE_offset_pair

Fields of OffsetPair

begin: u64

start of range

end: u64

end of range

data: Expression<R>

expression

DefaultLocation

DW_LLE_default_location

Fields of DefaultLocation

data: Expression<R>

expression

StartEnd

DW_LLE_start_end

Fields of StartEnd

begin: u64

start of range

end: u64

end of range

data: Expression<R>

expression

StartLength

DW_LLE_start_length

Fields of StartLength

begin: u64

start of range

length: u64

length of range

data: Expression<R>

expression

Trait Implementations

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

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

Auto Trait Implementations

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

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

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.