Enum gimli::CfaRule [] [src]

pub enum CfaRule<R: Reader> {
    RegisterAndOffset {
        register: u8,
        offset: i64,
    },
    Expression(R),
}

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 Reader as a DWARF expression program.

Trait Implementations

impl<R: Clone + Reader> Clone for CfaRule<R>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<R: Debug + Reader> Debug for CfaRule<R>
[src]

Formats the value using the given formatter.

impl<R: PartialEq + Reader> PartialEq for CfaRule<R>
[src]

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

This method tests for !=.

impl<R: Eq + Reader> Eq for CfaRule<R>
[src]

impl<R: Reader> Default for CfaRule<R>
[src]

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