Enum gimli::CieOrFde [] [src]

pub enum CieOrFde<'bases, Section, R> where
    R: Reader,
    Section: UnwindSection<R>, 
{ Cie(CommonInformationEntry<Section, R, R::Offset>), Fde(PartialFrameDescriptionEntry<'bases, Section, R>), }

Either a CommonInformationEntry (CIE) or a FrameDescriptionEntry (FDE).

Variants

This CFI entry is a CommonInformationEntry.

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: Clone, R: Clone> Clone for CieOrFde<'bases, Section, R> where
    R: Reader,
    Section: UnwindSection<R>,
    R::Offset: Clone
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<'bases, Section: Debug, R: Debug> Debug for CieOrFde<'bases, Section, R> where
    R: Reader,
    Section: UnwindSection<R>,
    R::Offset: Debug
[src]

Formats the value using the given formatter.

impl<'bases, Section: PartialEq, R: PartialEq> PartialEq for CieOrFde<'bases, Section, R> where
    R: Reader,
    Section: UnwindSection<R>,
    R::Offset: PartialEq
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl<'bases, Section: Eq, R: Eq> Eq for CieOrFde<'bases, Section, R> where
    R: Reader,
    Section: UnwindSection<R>,
    R::Offset: Eq
[src]