#[repr(C)]pub struct iret_context {
pub rax: u64,
pub r11: u64,
pub rcx: u64,
pub flags: u64,
pub rip: u64,
pub cs: u64,
pub rflags: u64,
pub rsp: u64,
pub ss: u64,
}
Fields§
§rax: u64
§r11: u64
§rcx: u64
§flags: u64
§rip: u64
§cs: u64
§rflags: u64
§rsp: u64
§ss: u64
Trait Implementations§
Source§impl Clone for iret_context
impl Clone for iret_context
Source§fn clone(&self) -> iret_context
fn clone(&self) -> iret_context
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 Debug for iret_context
impl Debug for iret_context
impl Copy for iret_context
Auto Trait Implementations§
impl Freeze for iret_context
impl RefUnwindSafe for iret_context
impl Send for iret_context
impl Sync for iret_context
impl Unpin for iret_context
impl UnwindSafe for iret_context
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