pub enum CfaRule {
RegisterOffset {
register: u16,
offset: i64,
},
Expression(Vec<u8>),
}Expand description
How to compute the CFA (Canonical Frame Address).
Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for CfaRule
impl RefUnwindSafe for CfaRule
impl Send for CfaRule
impl Sync for CfaRule
impl Unpin for CfaRule
impl UnsafeUnpin for CfaRule
impl UnwindSafe for CfaRule
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more