pub enum SFrameFDE {
V1(SFrameFDE),
V2(SFrameFDE),
V3(SFrameFDE),
}Expand description
Variants§
Implementations§
Source§impl SFrameFDE
impl SFrameFDE
Sourcepub fn find_fre(
&self,
section: &SFrameSection<'_>,
pc: u64,
) -> SFrameResult<Option<SFrameFRE>>
pub fn find_fre( &self, section: &SFrameSection<'_>, pc: u64, ) -> SFrameResult<Option<SFrameFRE>>
Find FRE entry by pc
Trait Implementations§
Auto Trait Implementations§
impl Freeze for SFrameFDE
impl RefUnwindSafe for SFrameFDE
impl Send for SFrameFDE
impl Sync for SFrameFDE
impl Unpin for SFrameFDE
impl UnwindSafe for SFrameFDE
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more