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, }, }
A raw entry in .debug_rnglists
Variants
A range from DWARF version <= 4.
Show fields
DW_RLE_base_address
DW_RLE_base_addressx
Show fields
Fields of BaseAddressx
addr: DebugAddrIndex<T>
base address
DW_RLE_startx_endx
Show fields
Fields of StartxEndx
DW_RLE_startx_length
Show fields
Fields of StartxLength
DW_RLE_offset_pair
DW_RLE_start_end
DW_RLE_start_length
Trait Implementations
impl<T: Clone> Clone for RawRngListEntry<T>
[src]
impl<T: Clone> Clone for RawRngListEntry<T>
[src]fn clone(&self) -> RawRngListEntry<T>
[src]
pub fn clone_from(&mut self, source: &Self)
1.0.0[src]
Auto Trait Implementations
impl<T> Send for RawRngListEntry<T> where
T: Send,
T: Send,
impl<T> Sync for RawRngListEntry<T> where
T: Sync,
T: Sync,
impl<T> Unpin for RawRngListEntry<T> where
T: Unpin,
T: Unpin,
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> ToOwned for T where
T: Clone,
[src]
impl<T> ToOwned for T where
T: Clone,
[src]type Owned = T
The resulting type after obtaining ownership.