Enum gimli::read::CfaRule [−][src]
pub enum CfaRule<R: Reader> {
RegisterAndOffset {
register: Register,
offset: i64,
},
Expression(Expression<R>),
}
Expand description
The canonical frame address (CFA) recovery rules.
Variants
The CFA is given offset from the given register’s value.
Fields of RegisterAndOffset
Expression(Expression<R>)
The CFA is obtained by evaluating this Reader
as a DWARF expression
program.
Tuple Fields of Expression
0: Expression<R>
Trait Implementations
Auto Trait Implementations
impl<R> RefUnwindSafe for CfaRule<R> where
R: RefUnwindSafe,
impl<R> UnwindSafe for CfaRule<R> where
R: UnwindSafe,
Blanket Implementations
Mutably borrows from an owned value. Read more
Compare self to key
and return true
if they are equal.