Enum gimli::CfaRule
[−]
[src]
pub enum CfaRule<'input, Endian> where Endian: Endianity { RegisterAndOffset { register: u8, offset: i64, }, Expression(EndianBuf<'input, Endian>), }
The canonical frame address (CFA) recovery rules.
Variants
RegisterAndOffsetThe CFA is given offset from the given register's value.
Fields
register: u8 | The register containing the base value. |
offset: i64 | The offset from the register's base value. |
Expression(EndianBuf<'input, Endian>)The CFA is obtained by evaluating this EndianBuf as a DWARF expression
program.
Trait Implementations
impl<'input, Endian: Clone> Clone for CfaRule<'input, Endian> where Endian: Endianity[src]
fn clone(&self) -> CfaRule<'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 CfaRule<'input, Endian> where Endian: Endianity[src]
impl<'input, Endian: PartialEq> PartialEq for CfaRule<'input, Endian> where Endian: Endianity[src]
fn eq(&self, __arg_0: &CfaRule<'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: &CfaRule<'input, Endian>) -> bool
This method tests for !=.