Enum gimli::read::DieReference [−][src]
pub enum DieReference<T = usize> {
UnitRef(UnitOffset<T>),
DebugInfoRef(DebugInfoOffset<T>),
}Expand description
A reference to a DIE, either relative to the current CU or relative to the section.
Variants
UnitRef(UnitOffset<T>)A CU-relative reference.
Tuple Fields of UnitRef
0: UnitOffset<T>DebugInfoRef(DebugInfoOffset<T>)A section-relative reference.
Tuple Fields of DebugInfoRef
0: DebugInfoOffset<T>Trait Implementations
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.
Auto Trait Implementations
impl<T> RefUnwindSafe for DieReference<T> where
T: RefUnwindSafe,
impl<T> Send for DieReference<T> where
T: Send,
impl<T> Sync for DieReference<T> where
T: Sync,
impl<T> Unpin for DieReference<T> where
T: Unpin,
impl<T> UnwindSafe for DieReference<T> where
T: UnwindSafe,
Blanket Implementations
Mutably borrows from an owned value. Read more
Compare self to key and return true if they are equal.