framehop 0.16.0

Stack frame unwinding support for various formats
Documentation
1
2
3
4
5
6
use crate::unwind_rule::UnwindRule;

pub trait Arch {
    type UnwindRegs;
    type UnwindRule: UnwindRule<UnwindRegs = Self::UnwindRegs>;
}