#[repr(C)]pub struct proc_taskinfo {Show 18 fields
pub pti_virtual_size: u64,
pub pti_resident_size: u64,
pub pti_total_user: u64,
pub pti_total_system: u64,
pub pti_threads_user: u64,
pub pti_threads_system: u64,
pub pti_policy: i32,
pub pti_faults: i32,
pub pti_pageins: i32,
pub pti_cow_faults: i32,
pub pti_messages_sent: i32,
pub pti_messages_received: i32,
pub pti_syscalls_mach: i32,
pub pti_syscalls_unix: i32,
pub pti_csw: i32,
pub pti_threadnum: i32,
pub pti_numrunning: i32,
pub pti_priority: i32,
}
Fields§
§pti_virtual_size: u64
§pti_resident_size: u64
§pti_total_user: u64
§pti_total_system: u64
§pti_threads_user: u64
§pti_threads_system: u64
§pti_policy: i32
§pti_faults: i32
§pti_pageins: i32
§pti_cow_faults: i32
§pti_messages_sent: i32
§pti_messages_received: i32
§pti_syscalls_mach: i32
§pti_syscalls_unix: i32
§pti_csw: i32
§pti_threadnum: i32
§pti_numrunning: i32
§pti_priority: i32
Trait Implementations§
Source§impl Clone for proc_taskinfo
impl Clone for proc_taskinfo
Source§fn clone(&self) -> proc_taskinfo
fn clone(&self) -> proc_taskinfo
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for proc_taskinfo
impl Debug for proc_taskinfo
Source§impl Hash for proc_taskinfo
impl Hash for proc_taskinfo
Source§impl PartialEq for proc_taskinfo
impl PartialEq for proc_taskinfo
impl Copy for proc_taskinfo
impl Eq for proc_taskinfo
impl StructuralPartialEq for proc_taskinfo
Auto Trait Implementations§
impl Freeze for proc_taskinfo
impl RefUnwindSafe for proc_taskinfo
impl Send for proc_taskinfo
impl Sync for proc_taskinfo
impl Unpin for proc_taskinfo
impl UnwindSafe for proc_taskinfo
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§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> 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