[]Enum symbolic::debuginfo::dwarf::gimli::read::CieOrFde

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

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

Variants

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

impl<'bases, Section, R> Debug for CieOrFde<'bases, Section, R> where
    Section: Debug + UnwindSection<R>,
    R: Debug + Reader

impl<'bases, Section, R> Eq for CieOrFde<'bases, Section, R> where
    Section: Eq + UnwindSection<R>,
    R: Eq + Reader

impl<'bases, Section, R> PartialEq<CieOrFde<'bases, Section, R>> for CieOrFde<'bases, Section, R> where
    Section: PartialEq<Section> + UnwindSection<R>,
    R: PartialEq<R> + Reader

impl<'bases, Section, R> StructuralEq for CieOrFde<'bases, Section, R> where
    Section: UnwindSection<R>,
    R: Reader

impl<'bases, Section, R> StructuralPartialEq for CieOrFde<'bases, Section, R> where
    Section: UnwindSection<R>,
    R: Reader

Auto Trait Implementations

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

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
[src]

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

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

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

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.