[][src]Struct ndk_sys::user

#[repr(C)]pub struct user {
    pub regs: user_regs,
    pub u_fpvalid: c_int,
    pub u_tsize: c_ulong,
    pub u_dsize: c_ulong,
    pub u_ssize: c_ulong,
    pub start_code: c_ulong,
    pub start_stack: c_ulong,
    pub signal: c_long,
    pub reserved: c_int,
    pub u_ar0: *mut user_regs,
    pub magic: c_ulong,
    pub u_comm: [c_char; 32],
    pub u_debugreg: [c_int; 8],
    pub u_fp: user_fpregs,
    pub u_fp0: *mut user_fpregs,
}

Fields

regs: user_regsu_fpvalid: c_intu_tsize: c_ulongu_dsize: c_ulongu_ssize: c_ulongstart_code: c_ulongstart_stack: c_ulongsignal: c_longreserved: c_intu_ar0: *mut user_regsmagic: c_ulongu_comm: [c_char; 32]u_debugreg: [c_int; 8]u_fp: user_fpregsu_fp0: *mut user_fpregs

Trait Implementations

impl Clone for user[src]

impl Copy for user[src]

impl Debug for user[src]

Auto Trait Implementations

impl RefUnwindSafe for user

impl !Send for user

impl !Sync for user

impl Unpin for user

impl UnwindSafe for user

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.