Struct libc::user[][src]

#[repr(C)]
pub struct user {
Show fields pub regs: user_regs_struct, pub u_fpvalid: c_int, pub i387: user_fpregs_struct, pub u_tsize: c_ulonglong, pub u_dsize: c_ulonglong, pub u_ssize: c_ulonglong, pub start_code: c_ulonglong, pub start_stack: c_ulonglong, pub signal: c_longlong, pub u_ar0: *mut user_regs_struct, pub u_fpstate: *mut user_fpregs_struct, pub magic: c_ulonglong, pub u_comm: [c_char; 32], pub u_debugreg: [c_ulonglong; 8], // some fields omitted
}

Fields

regs: user_regs_structu_fpvalid: c_inti387: user_fpregs_structu_tsize: c_ulonglongu_dsize: c_ulonglongu_ssize: c_ulonglongstart_code: c_ulonglongstart_stack: c_ulonglongsignal: c_longlongu_ar0: *mut user_regs_structu_fpstate: *mut user_fpregs_structmagic: c_ulonglongu_comm: [c_char; 32]u_debugreg: [c_ulonglong; 8]

Trait Implementations

impl Clone for user[src]

fn clone(&self) -> user[src]

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Copy for user[src]

Auto Trait Implementations

impl !Send for user

impl !Sync for user

impl Unpin for user

Blanket Implementations

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

pub fn type_id(&self) -> TypeId[src]

Gets the TypeId of self. Read more

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

pub fn borrow(&self) -> &T[src]

Immutably borrows from an owned value. Read more

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

pub fn borrow_mut(&mut self) -> &mut T[src]

Mutably borrows from an owned value. Read more

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

pub fn from(t: T) -> T[src]

Performs the conversion.

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

pub fn into(self) -> U[src]

Performs the conversion.

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.

pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]

Performs the conversion.

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.

pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]

Performs the conversion.