pub struct UnwindInfo<'a, P> { /* private fields */ }Expand description
Unwind info.
Implementations§
Source§impl<'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§
Source§impl<'a, P: Clone> Clone for UnwindInfo<'a, P>
impl<'a, P: Clone> Clone for UnwindInfo<'a, P>
Source§fn clone(&self) -> UnwindInfo<'a, P>
fn clone(&self) -> UnwindInfo<'a, P>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'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> Freeze for UnwindInfo<'a, P>where
P: Freeze,
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§
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