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.)
sourcepub fn offset(&self) -> R::Offset
pub fn offset(&self) -> R::Offset
Get the offset of this entry from the start of its containing section.
sourcepub fn cie_offset(&self) -> Section::Offset
pub fn cie_offset(&self) -> Section::Offset
Get the offset of this FDE’s CIE.
sourcepub fn entry_len(&self) -> R::Offset
pub fn entry_len(&self) -> R::Offset
A constant that gives the number of bytes of the header and instruction stream for this function, not including the length field itself (see Section 7.2.2). The size of the length field plus the value of length must be an integral multiple of the address size.
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> 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>
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: UnwindSafe,
Section: UnwindSafe,
<R as Reader>::Offset: UnwindSafe,
<Section as UnwindSection<R>>::Offset: 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