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§
source§impl<'bases, Section, R> PartialEq for CieOrFde<'bases, Section, R>
impl<'bases, Section, R> PartialEq for CieOrFde<'bases, Section, R>
impl<'bases, Section, R> Eq for CieOrFde<'bases, Section, R>
impl<'bases, Section, R> StructuralPartialEq for CieOrFde<'bases, Section, R>where
R: Reader,
Section: UnwindSection<R>,
Auto Trait Implementations§
impl<'bases, Section, R> Freeze for CieOrFde<'bases, Section, R>
impl<'bases, Section, R> RefUnwindSafe for CieOrFde<'bases, Section, R>where
<R as Reader>::Offset: RefUnwindSafe,
R: RefUnwindSafe,
<Section as UnwindSection<R>>::Offset: RefUnwindSafe,
Section: RefUnwindSafe,
impl<'bases, Section, R> Send for CieOrFde<'bases, Section, R>
impl<'bases, Section, R> Sync for CieOrFde<'bases, Section, R>
impl<'bases, Section, R> Unpin for CieOrFde<'bases, Section, R>
impl<'bases, Section, R> UnwindSafe for CieOrFde<'bases, Section, R>where
<R as Reader>::Offset: UnwindSafe,
R: UnwindSafe,
<Section as UnwindSection<R>>::Offset: UnwindSafe,
Section: UnwindSafe,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.