Struct gimli::read::PartialFrameDescriptionEntry
source · pub struct PartialFrameDescriptionEntry<'bases, Section, R>where
R: Reader,
Section: UnwindSection<R>,{ /* private fields */ }
Expand description
A partially parsed FrameDescriptionEntry
.
Fully parsing this FDE requires first parsing its CIE.
Implementations§
source§impl<'bases, Section, R> PartialFrameDescriptionEntry<'bases, Section, R>where
R: Reader,
Section: UnwindSection<R>,
impl<'bases, Section, R> PartialFrameDescriptionEntry<'bases, Section, R>where
R: Reader,
Section: UnwindSection<R>,
sourcepub fn parse<F>(&self, get_cie: F) -> Result<FrameDescriptionEntry<R>>where
F: FnMut(&Section, &BaseAddresses, Section::Offset) -> Result<CommonInformationEntry<R>>,
pub fn parse<F>(&self, get_cie: F) -> Result<FrameDescriptionEntry<R>>where
F: FnMut(&Section, &BaseAddresses, Section::Offset) -> Result<CommonInformationEntry<R>>,
Fully parse this FDE.
You must provide a function get its associated CIE (either by parsing it on demand, or looking it up in some table mapping offsets to CIEs that you’ve already parsed, etc.)
Trait Implementations§
source§impl<'bases, Section, R> Clone for PartialFrameDescriptionEntry<'bases, Section, R>where
R: Reader + Clone,
Section: UnwindSection<R> + Clone,
R::Offset: Clone,
Section::Offset: Clone,
impl<'bases, Section, R> Clone for PartialFrameDescriptionEntry<'bases, Section, R>where
R: Reader + Clone,
Section: UnwindSection<R> + Clone,
R::Offset: Clone,
Section::Offset: Clone,
source§fn clone(&self) -> PartialFrameDescriptionEntry<'bases, Section, R>
fn clone(&self) -> PartialFrameDescriptionEntry<'bases, Section, R>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl<'bases, Section, R> Debug for PartialFrameDescriptionEntry<'bases, Section, R>where
R: Reader + Debug,
Section: UnwindSection<R> + Debug,
R::Offset: Debug,
Section::Offset: Debug,
impl<'bases, Section, R> Debug for PartialFrameDescriptionEntry<'bases, Section, R>where
R: Reader + Debug,
Section: UnwindSection<R> + Debug,
R::Offset: Debug,
Section::Offset: Debug,
source§impl<'bases, Section, R> PartialEq<PartialFrameDescriptionEntry<'bases, Section, R>> for PartialFrameDescriptionEntry<'bases, Section, R>where
R: Reader + PartialEq,
Section: UnwindSection<R> + PartialEq,
R::Offset: PartialEq,
Section::Offset: PartialEq,
impl<'bases, Section, R> PartialEq<PartialFrameDescriptionEntry<'bases, Section, R>> for PartialFrameDescriptionEntry<'bases, Section, R>where
R: Reader + PartialEq,
Section: UnwindSection<R> + PartialEq,
R::Offset: PartialEq,
Section::Offset: PartialEq,
source§fn eq(&self, other: &PartialFrameDescriptionEntry<'bases, Section, R>) -> bool
fn eq(&self, other: &PartialFrameDescriptionEntry<'bases, Section, R>) -> bool
impl<'bases, Section, R> Eq for PartialFrameDescriptionEntry<'bases, Section, R>where
R: Reader + Eq,
Section: UnwindSection<R> + Eq,
R::Offset: Eq,
Section::Offset: Eq,
impl<'bases, Section, R> StructuralEq for PartialFrameDescriptionEntry<'bases, Section, R>where
R: Reader,
Section: UnwindSection<R>,
impl<'bases, Section, R> StructuralPartialEq for PartialFrameDescriptionEntry<'bases, Section, R>where
R: Reader,
Section: UnwindSection<R>,
Auto Trait Implementations§
impl<'bases, Section, R> RefUnwindSafe for PartialFrameDescriptionEntry<'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 PartialFrameDescriptionEntry<'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 PartialFrameDescriptionEntry<'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 PartialFrameDescriptionEntry<'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 PartialFrameDescriptionEntry<'bases, Section, R>where
R: UnwindSafe,
Section: UnwindSafe,
<R as Reader>::Offset: UnwindSafe,
<Section as UnwindSection<R>>::Offset: UnwindSafe,
Blanket Implementations§
source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.