pub enum CfaRule<R: Reader> {
RegisterAndOffset {
register: Register,
offset: i64,
},
Expression(Expression<R>),
}
Expand description
The canonical frame address (CFA) recovery rules.
Variants§
RegisterAndOffset
Fields
The CFA is given offset from the given register’s value.
Expression(Expression<R>)
The CFA is obtained by evaluating this Reader
as a DWARF expression
program.
Trait Implementations§
source§impl<R: PartialEq + Reader> PartialEq<CfaRule<R>> for CfaRule<R>
impl<R: PartialEq + Reader> PartialEq<CfaRule<R>> for CfaRule<R>
impl<R: Eq + Reader> Eq for CfaRule<R>
impl<R: Reader> StructuralEq for CfaRule<R>
impl<R: Reader> StructuralPartialEq for CfaRule<R>
Auto Trait Implementations§
impl<R> RefUnwindSafe for CfaRule<R>where
R: RefUnwindSafe,
impl<R> Send for CfaRule<R>where
R: Send,
impl<R> Sync for CfaRule<R>where
R: Sync,
impl<R> Unpin for CfaRule<R>where
R: Unpin,
impl<R> UnwindSafe for CfaRule<R>where
R: UnwindSafe,
Blanket Implementations§
source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.