pub struct UnwindCode {
pub code_offset: u8,
pub operation: UnwindOperation,
}
Expand description
An unwind operation that is executed at a particular place in the function prolog.
Fields§
§code_offset: u8
Offset of the corresponding instruction in the function prolog.
To be precise, this is the offset from the beginning of the prolog of the end of the instruction that performs this operation, plus 1 (that is, the offset of the start of the next instruction).
Unwind codes are ordered by this offset in reverse order, suitable for unwinding.
operation: UnwindOperation
The operation that was performed by the code in the prolog.
Trait Implementations§
Source§impl Clone for UnwindCode
impl Clone for UnwindCode
Source§fn clone(&self) -> UnwindCode
fn clone(&self) -> UnwindCode
Returns a copy 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 Debug for UnwindCode
impl Debug for UnwindCode
Source§impl PartialEq for UnwindCode
impl PartialEq for UnwindCode
impl Copy for UnwindCode
impl Eq for UnwindCode
impl StructuralPartialEq for UnwindCode
Auto Trait Implementations§
impl Freeze for UnwindCode
impl RefUnwindSafe for UnwindCode
impl Send for UnwindCode
impl Sync for UnwindCode
impl Unpin for UnwindCode
impl UnwindSafe for UnwindCode
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