framehop/aarch64/
arch.rs

1use super::unwind_rule::UnwindRuleAarch64;
2use super::unwindregs::UnwindRegsAarch64;
3use crate::arch::Arch;
4
5/// The Aarch64 CPU architecture.
6pub struct ArchAarch64;
7impl Arch for ArchAarch64 {
8    type UnwindRule = UnwindRuleAarch64;
9    type UnwindRegs = UnwindRegsAarch64;
10}