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