Struct gimli::FrameDescriptionEntry
[−]
[src]
pub struct FrameDescriptionEntry<'input, Endian> where Endian: Endianity {
// some fields omitted
}A FrameDescriptionEntry is a set of CFA instructions for an address range.
Methods
impl<'input, Endian> FrameDescriptionEntry<'input, Endian> where Endian: Endianity[src]
fn cie<'me>(&'me self) -> &'me CommonInformationEntry<'input, Endian>
Get a reference to this FDE's CIE.
fn instructions(&self) -> CallFrameInstructionIter<'input, Endian>
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.
Trait Implementations
impl<'input, Endian: Clone> Clone for FrameDescriptionEntry<'input, Endian> where Endian: Endianity[src]
fn clone(&self) -> FrameDescriptionEntry<'input, Endian>
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0
Performs copy-assignment from source. Read more
impl<'input, Endian: Debug> Debug for FrameDescriptionEntry<'input, Endian> where Endian: Endianity[src]
impl<'input, Endian: PartialEq> PartialEq for FrameDescriptionEntry<'input, Endian> where Endian: Endianity[src]
fn eq(&self, __arg_0: &FrameDescriptionEntry<'input, Endian>) -> bool
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &FrameDescriptionEntry<'input, Endian>) -> bool
This method tests for !=.