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
begin: u64
Start of range. May be an address or an offset.
end: u64
End of range. May be an address or an offset.
A range from DWARF version <= 4.
BaseAddress
Fields
addr: u64
base address
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
sourceimpl<T: Clone> Clone for RawRngListEntry<T>
impl<T: Clone> Clone for RawRngListEntry<T>
sourcefn clone(&self) -> RawRngListEntry<T>
fn clone(&self) -> RawRngListEntry<T>
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
Auto 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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more