Enum gimli::read::CieOrFde [−][src]
pub enum CieOrFde<'bases, Section, R> where
R: Reader,
Section: UnwindSection<R>, { Cie(CommonInformationEntry<R>), Fde(PartialFrameDescriptionEntry<'bases, Section, R>), }
Expand description
Either a CommonInformationEntry
(CIE) or a FrameDescriptionEntry
(FDE).
Variants
Cie(CommonInformationEntry<R>)
This CFI entry is a CommonInformationEntry
.
Fde(PartialFrameDescriptionEntry<'bases, Section, R>)
This CFI entry is a FrameDescriptionEntry
, however fully parsing it
requires parsing its CIE first, so it is left in a partially parsed
state.
Trait Implementations
impl<'bases, Section: Eq, R: Eq> Eq for CieOrFde<'bases, Section, R> where
R: Reader,
Section: UnwindSection<R>,
impl<'bases, Section, R> StructuralEq for CieOrFde<'bases, Section, R> where
R: Reader,
Section: UnwindSection<R>,
impl<'bases, Section, R> StructuralPartialEq for CieOrFde<'bases, Section, R> where
R: Reader,
Section: UnwindSection<R>,
Auto Trait Implementations
impl<'bases, Section, R> Send for CieOrFde<'bases, Section, R> where
R: Send,
Section: Send,
<R as Reader>::Offset: Send,
<Section as UnwindSection<R>>::Offset: Send,
Blanket Implementations
Mutably borrows from an owned value. Read more