use super::arch::ArchAarch64; use crate::pe::{PeSections, PeUnwinderError, PeUnwinding}; use crate::unwind_result::UnwindResult; impl PeUnwinding for ArchAarch64 { fn unwind_frame( _sections: PeSections, _address: u32, _regs: &mut Self::UnwindRegs, _is_first_frame: bool, _read_stack: &mut F, ) -> Result, PeUnwinderError> where F: FnMut(u64) -> Result, D: core::ops::Deref, { Err(PeUnwinderError::Aarch64Unsupported) } }