Enum gimli::read::RawRngListEntry
source · 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
Fields
A range from DWARF version <= 4.
BaseAddress
DW_RLE_base_address
BaseAddressx
Fields
§
addr: DebugAddrIndex<T>
base address
DW_RLE_base_addressx
StartxEndx
DW_RLE_startx_endx
StartxLength
DW_RLE_startx_length
OffsetPair
DW_RLE_offset_pair
StartEnd
DW_RLE_start_end
StartLength
DW_RLE_start_length
Trait Implementations§
source§impl<T: Clone> Clone for RawRngListEntry<T>
impl<T: Clone> Clone for RawRngListEntry<T>
source§fn clone(&self) -> RawRngListEntry<T>
fn clone(&self) -> RawRngListEntry<T>
Returns a copy 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<T> RefUnwindSafe for RawRngListEntry<T>where T: RefUnwindSafe,
impl<T> Send for RawRngListEntry<T>where T: Send,
impl<T> Sync for RawRngListEntry<T>where T: Sync,
impl<T> Unpin for RawRngListEntry<T>where T: Unpin,
impl<T> UnwindSafe for RawRngListEntry<T>where T: UnwindSafe,
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