Struct gimli::FrameDescriptionEntry [] [src]

pub struct FrameDescriptionEntry<Section, R, Offset = usize> where
    R: Reader<Offset = Offset>,
    Offset: ReaderOffset,
    Section: UnwindSection<R>,
    Section::Offset: UnwindOffset<R::Offset>, 
{ /* fields omitted */ }

A FrameDescriptionEntry is a set of CFA instructions for an address range.

Methods

impl<Section, R, Offset> FrameDescriptionEntry<Section, R, Offset> where
    R: Reader<Offset = Offset>,
    Offset: ReaderOffset,
    Section: UnwindSection<R>,
    Section::Offset: UnwindOffset<R::Offset>, 
[src]

Get a reference to this FDE's CIE.

Iterate over this FDE's instructions.

Will not include the CIE's initial instructions, if you want those do fde.cie().instructions() first.

Can be used with FallibleIterator.

Return true if the given address is within this FDE, false otherwise.

The address of this FDE's language-specific data area (LSDA), if it has any.

Return true if this FDE's function is a trampoline for a signal handler.

Return the address of the FDE's function's personality routine handler. The personality routine does language-specific clean up when unwinding the stack frames with the intent to not run them again.

Trait Implementations

impl<Section: Clone, R: Clone, Offset: Clone> Clone for FrameDescriptionEntry<Section, R, Offset> where
    R: Reader<Offset = Offset>,
    Offset: ReaderOffset,
    Section: UnwindSection<R>,
    Section::Offset: UnwindOffset<R::Offset>, 
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<Section: Debug, R: Debug, Offset: Debug> Debug for FrameDescriptionEntry<Section, R, Offset> where
    R: Reader<Offset = Offset>,
    Offset: ReaderOffset,
    Section: UnwindSection<R>,
    Section::Offset: UnwindOffset<R::Offset>, 
[src]

Formats the value using the given formatter.

impl<Section: PartialEq, R: PartialEq, Offset: PartialEq> PartialEq for FrameDescriptionEntry<Section, R, Offset> where
    R: Reader<Offset = Offset>,
    Offset: ReaderOffset,
    Section: UnwindSection<R>,
    Section::Offset: UnwindOffset<R::Offset>, 
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl<Section: Eq, R: Eq, Offset: Eq> Eq for FrameDescriptionEntry<Section, R, Offset> where
    R: Reader<Offset = Offset>,
    Offset: ReaderOffset,
    Section: UnwindSection<R>,
    Section::Offset: UnwindOffset<R::Offset>, 
[src]