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
sourceimpl<'bases, Section: Clone, R: Clone> Clone for CieOrFde<'bases, Section, R> where
R: Reader,
Section: UnwindSection<R>,
impl<'bases, Section: Clone, R: Clone> Clone for CieOrFde<'bases, Section, R> where
R: Reader,
Section: UnwindSection<R>,
sourceimpl<'bases, Section: Debug, R: Debug> Debug for CieOrFde<'bases, Section, R> where
R: Reader,
Section: UnwindSection<R>,
impl<'bases, Section: Debug, R: Debug> Debug for CieOrFde<'bases, Section, R> where
R: Reader,
Section: UnwindSection<R>,
sourceimpl<'bases, Section: PartialEq, R: PartialEq> PartialEq<CieOrFde<'bases, Section, R>> for CieOrFde<'bases, Section, R> where
R: Reader,
Section: UnwindSection<R>,
impl<'bases, Section: PartialEq, R: PartialEq> PartialEq<CieOrFde<'bases, Section, R>> for CieOrFde<'bases, Section, R> where
R: Reader,
Section: UnwindSection<R>,
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> RefUnwindSafe for CieOrFde<'bases, Section, R> where
R: RefUnwindSafe,
Section: RefUnwindSafe,
<R as Reader>::Offset: RefUnwindSafe,
<Section as UnwindSection<R>>::Offset: RefUnwindSafe,
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,
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,
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,
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,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<Q, K> Equivalent<K> for Q where
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Q where
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
sourcefn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to key
and return true
if they are equal.
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more