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>>
pub fn parse<F>(&self, get_cie: F) -> Result<FrameDescriptionEntry<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>
impl<'bases, Section, R> Clone for PartialFrameDescriptionEntry<'bases, Section, R>
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>
impl<'bases, Section, R> Debug for PartialFrameDescriptionEntry<'bases, Section, R>
source§impl<'bases, Section, R> PartialEq for PartialFrameDescriptionEntry<'bases, Section, R>
impl<'bases, Section, R> PartialEq for PartialFrameDescriptionEntry<'bases, Section, R>
source§fn eq(&self, other: &PartialFrameDescriptionEntry<'bases, Section, R>) -> bool
fn eq(&self, other: &PartialFrameDescriptionEntry<'bases, Section, R>) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl<'bases, Section, R> Eq for PartialFrameDescriptionEntry<'bases, Section, R>
impl<'bases, Section, R> StructuralPartialEq for PartialFrameDescriptionEntry<'bases, Section, R>where
R: Reader,
Section: UnwindSection<R>,
Auto Trait Implementations§
impl<'bases, Section, R> Freeze for PartialFrameDescriptionEntry<'bases, Section, R>
impl<'bases, Section, R> RefUnwindSafe for PartialFrameDescriptionEntry<'bases, Section, R>where
<R as Reader>::Offset: RefUnwindSafe,
<Section as UnwindSection<R>>::Offset: RefUnwindSafe,
R: RefUnwindSafe,
Section: RefUnwindSafe,
impl<'bases, Section, R> Send for PartialFrameDescriptionEntry<'bases, Section, R>
impl<'bases, Section, R> Sync for PartialFrameDescriptionEntry<'bases, Section, R>
impl<'bases, Section, R> Unpin for PartialFrameDescriptionEntry<'bases, Section, R>
impl<'bases, Section, R> UnwindSafe for PartialFrameDescriptionEntry<'bases, Section, R>where
<R as Reader>::Offset: UnwindSafe,
<Section as UnwindSection<R>>::Offset: UnwindSafe,
R: 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