pub enum ThreadContext {
X86(Box<ThreadContextX86>),
X64(Box<ThreadContextX64>),
}
Expand description
A ThreadContext
stores the thread contexts for the architecture that are
supported by the library.
Variants§
X86(Box<ThreadContextX86>)
The Intel x86 thread context.
X64(Box<ThreadContextX64>)
The Intel x64 thread context.
Trait Implementations§
Source§impl Debug for ThreadContext
impl Debug for ThreadContext
Auto Trait Implementations§
impl Freeze for ThreadContext
impl RefUnwindSafe for ThreadContext
impl Send for ThreadContext
impl Sync for ThreadContext
impl Unpin for ThreadContext
impl UnwindSafe for ThreadContext
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