Struct symbolic::debuginfo::dwarf::gimli::read::PartialFrameDescriptionEntry[]

pub struct PartialFrameDescriptionEntry<'bases, Section, R> where
    Section: UnwindSection<R>,
    R: Reader
{ /* fields omitted */ }

A partially parsed FrameDescriptionEntry.

Fully parsing this FDE requires first parsing its CIE.

Implementations

impl<'bases, Section, R> PartialFrameDescriptionEntry<'bases, Section, R> where
    Section: UnwindSection<R>,
    R: Reader

pub fn parse<F>(
    &self,
    get_cie: F
) -> Result<FrameDescriptionEntry<R, <R as Reader>::Offset>, Error> where
    F: FnMut(&Section, &BaseAddresses, <Section as UnwindSection<R>>::Offset) -> Result<CommonInformationEntry<R, <R as Reader>::Offset>, Error>, 

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

impl<'bases, Section, R> Clone for PartialFrameDescriptionEntry<'bases, Section, R> where
    Section: Clone + UnwindSection<R>,
    R: Clone + Reader,
    <R as Reader>::Offset: Clone,
    <Section as UnwindSection<R>>::Offset: Clone

impl<'bases, Section, R> Debug for PartialFrameDescriptionEntry<'bases, Section, R> where
    Section: Debug + UnwindSection<R>,
    R: Debug + Reader,
    <R as Reader>::Offset: Debug,
    <Section as UnwindSection<R>>::Offset: Debug

impl<'bases, Section, R> Eq for PartialFrameDescriptionEntry<'bases, Section, R> where
    Section: Eq + UnwindSection<R>,
    R: Eq + Reader,
    <R as Reader>::Offset: Eq,
    <Section as UnwindSection<R>>::Offset: Eq

impl<'bases, Section, R> PartialEq<PartialFrameDescriptionEntry<'bases, Section, R>> for PartialFrameDescriptionEntry<'bases, Section, R> where
    Section: PartialEq<Section> + UnwindSection<R>,
    R: PartialEq<R> + Reader,
    <R as Reader>::Offset: PartialEq<<R as Reader>::Offset>,
    <Section as UnwindSection<R>>::Offset: PartialEq<<Section as UnwindSection<R>>::Offset>, 

impl<'bases, Section, R> StructuralEq for PartialFrameDescriptionEntry<'bases, Section, R> where
    Section: UnwindSection<R>,
    R: Reader

impl<'bases, Section, R> StructuralPartialEq for PartialFrameDescriptionEntry<'bases, Section, R> where
    Section: UnwindSection<R>,
    R: Reader

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

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.