Enum gimli::read::RawRngListEntry[][src]

pub enum RawRngListEntry<T> {
    AddressOrOffsetPair {
        begin: u64,
        end: u64,
    },
    BaseAddress {
        addr: u64,
    },
    BaseAddressx {
        addr: DebugAddrIndex<T>,
    },
    StartxEndx {
        begin: DebugAddrIndex<T>,
        end: DebugAddrIndex<T>,
    },
    StartxLength {
        begin: DebugAddrIndex<T>,
        length: u64,
    },
    OffsetPair {
        begin: u64,
        end: u64,
    },
    StartEnd {
        begin: u64,
        end: u64,
    },
    StartLength {
        begin: u64,
        length: u64,
    },
}
Expand description

A raw entry in .debug_rnglists

Variants

AddressOrOffsetPair

A range 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.

BaseAddress

DW_RLE_base_address

Fields of BaseAddress

addr: u64

base address

BaseAddressx

DW_RLE_base_addressx

Fields of BaseAddressx

addr: DebugAddrIndex<T>

base address

StartxEndx

DW_RLE_startx_endx

Fields of StartxEndx

begin: DebugAddrIndex<T>

start of range

end: DebugAddrIndex<T>

end of range

StartxLength

DW_RLE_startx_length

Fields of StartxLength

begin: DebugAddrIndex<T>

start of range

length: u64

length of range

OffsetPair

DW_RLE_offset_pair

Fields of OffsetPair

begin: u64

start of range

end: u64

end of range

StartEnd

DW_RLE_start_end

Fields of StartEnd

begin: u64

start of range

end: u64

end of range

StartLength

DW_RLE_start_length

Fields of StartLength

begin: u64

start of range

length: u64

length of range

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The resulting type after obtaining ownership.

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

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

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

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.