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

The CFA is given offset from the given register's value.

Fields of RegisterAndOffset

The register containing the base value.

The offset from the register's base value.

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]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<'input, Endian: Debug> Debug for CfaRule<'input, Endian> where
    Endian: Endianity
[src]

Formats the value using the given formatter.

impl<'input, Endian: PartialEq> PartialEq for CfaRule<'input, Endian> where
    Endian: Endianity
[src]

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

This method tests for !=.

impl<'input, Endian: Eq> Eq for CfaRule<'input, Endian> where
    Endian: Endianity
[src]

impl<'input, Endian> Default for CfaRule<'input, Endian> where
    Endian: Endianity
[src]

Returns the "default value" for a type. Read more