pub struct UnwindInfo<'a, P> { /* private fields */ }
Expand description
Unwind info.
Implementations
sourceimpl<'a, P: Pe<'a>> UnwindInfo<'a, P>
impl<'a, P: Pe<'a>> UnwindInfo<'a, P>
sourcepub fn image(&self) -> &'a UNWIND_INFO
pub fn image(&self) -> &'a UNWIND_INFO
Returns the underlying unwind info image.
pub fn version(&self) -> u8
pub fn flags(&self) -> u8
pub fn size_of_prolog(&self) -> usize
pub fn frame_register(&self) -> u8
pub fn frame_offset(&self) -> u8
pub fn unwind_codes(&self) -> &'a [UNWIND_CODE]
Trait Implementations
sourceimpl<'a, P: Clone> Clone for UnwindInfo<'a, P>
impl<'a, P: Clone> Clone for UnwindInfo<'a, P>
sourcefn clone(&self) -> UnwindInfo<'a, P>
fn clone(&self) -> UnwindInfo<'a, P>
Returns a copy of the value. Read more
1.0.0 · sourceconst fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl<'a, P: Pe<'a>> Debug for UnwindInfo<'a, P>
impl<'a, P: Pe<'a>> Debug for UnwindInfo<'a, P>
impl<'a, P: Copy> Copy for UnwindInfo<'a, P>
Auto Trait Implementations
impl<'a, P> RefUnwindSafe for UnwindInfo<'a, P>where
P: RefUnwindSafe,
impl<'a, P> Send for UnwindInfo<'a, P>where
P: Send,
impl<'a, P> Sync for UnwindInfo<'a, P>where
P: Sync,
impl<'a, P> Unpin for UnwindInfo<'a, P>where
P: Unpin,
impl<'a, P> UnwindSafe for UnwindInfo<'a, P>where
P: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more