[][src]Struct libc::reg32

#[repr(C)]pub struct reg32 {
    pub r_fs: u32,
    pub r_es: u32,
    pub r_ds: u32,
    pub r_edi: u32,
    pub r_esi: u32,
    pub r_ebp: u32,
    pub r_isp: u32,
    pub r_ebx: u32,
    pub r_edx: u32,
    pub r_ecx: u32,
    pub r_eax: u32,
    pub r_trapno: u32,
    pub r_err: u32,
    pub r_eip: u32,
    pub r_cs: u32,
    pub r_eflags: u32,
    pub r_esp: u32,
    pub r_ss: u32,
    pub r_gs: u32,
}

Fields

r_fs: u32r_es: u32r_ds: u32r_edi: u32r_esi: u32r_ebp: u32r_isp: u32r_ebx: u32r_edx: u32r_ecx: u32r_eax: u32r_trapno: u32r_err: u32r_eip: u32r_cs: u32r_eflags: u32r_esp: u32r_ss: u32r_gs: u32

Trait Implementations

impl Clone for reg32[src]

impl Copy for reg32[src]

Auto Trait Implementations

impl Send for reg32

impl Sync for reg32

impl Unpin for reg32

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.