Source code
Revision control
Copy as Markdown
Other Tools
use crate::unwind_rule::UnwindRule;
pub trait Arch {
type UnwindRegs;
type UnwindRule: UnwindRule<UnwindRegs = Self::UnwindRegs>;
}
use crate::unwind_rule::UnwindRule;
pub trait Arch {
type UnwindRegs;
type UnwindRule: UnwindRule<UnwindRegs = Self::UnwindRegs>;
}