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>)
Tuple Fields
0: UnitOffset<T>
A CU-relative reference.
DebugInfoRef(DebugInfoOffset<T>)
Tuple Fields
0: DebugInfoOffset<T>
A section-relative reference.
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