[][src]Struct libc::reg

#[repr(C)]pub struct reg {
    pub r_r15: i64,
    pub r_r14: i64,
    pub r_r13: i64,
    pub r_r12: i64,
    pub r_r11: i64,
    pub r_r10: i64,
    pub r_r9: i64,
    pub r_r8: i64,
    pub r_rdi: i64,
    pub r_rsi: i64,
    pub r_rbp: i64,
    pub r_rbx: i64,
    pub r_rdx: i64,
    pub r_rcx: i64,
    pub r_rax: i64,
    pub r_trapno: u32,
    pub r_fs: u16,
    pub r_gs: u16,
    pub r_err: u32,
    pub r_es: u16,
    pub r_ds: u16,
    pub r_rip: i64,
    pub r_cs: i64,
    pub r_rflags: i64,
    pub r_rsp: i64,
    pub r_ss: i64,
}

Fields

r_r15: i64r_r14: i64r_r13: i64r_r12: i64r_r11: i64r_r10: i64r_r9: i64r_r8: i64r_rdi: i64r_rsi: i64r_rbp: i64r_rbx: i64r_rdx: i64r_rcx: i64r_rax: i64r_trapno: u32r_fs: u16r_gs: u16r_err: u32r_es: u16r_ds: u16r_rip: i64r_cs: i64r_rflags: i64r_rsp: i64r_ss: i64

Trait Implementations

impl Clone for reg[src]

impl Copy for reg[src]

Auto Trait Implementations

impl Send for reg

impl Sync for reg

impl Unpin for reg

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.