#[repr(C)]pub struct user {Show 14 fields
pub regs: user_regs_struct,
pub u_fpvalid: i32,
pub i387: user_fpregs_struct,
pub u_tsize: u64,
pub u_dsize: u64,
pub u_ssize: u64,
pub start_code: u64,
pub start_stack: u64,
pub signal: i64,
pub u_ar0: *mut user_regs_struct,
pub u_fpstate: *mut user_fpregs_struct,
pub magic: u64,
pub u_comm: [i8; 32],
pub u_debugreg: [u64; 8],
/* private fields */
}
Fields§
§regs: user_regs_struct
§u_fpvalid: i32
§i387: user_fpregs_struct
§u_tsize: u64
§u_dsize: u64
§u_ssize: u64
§start_code: u64
§start_stack: u64
§signal: i64
§u_ar0: *mut user_regs_struct
§u_fpstate: *mut user_fpregs_struct
§magic: u64
§u_comm: [i8; 32]
§u_debugreg: [u64; 8]
Trait Implementations§
impl Copy for user
impl Eq for user
impl StructuralPartialEq for user
Auto Trait Implementations§
impl Freeze for user
impl RefUnwindSafe for user
impl !Send for user
impl !Sync for user
impl Unpin for user
impl UnwindSafe for user
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
Source§fn in_current_span(self) -> Instrumented<Self> ⓘ
fn in_current_span(self) -> Instrumented<Self> ⓘ
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more