Struct nix::sys::sysinfo::SysInfo [−][src]
#[repr(transparent)]pub struct SysInfo(_);
System info structure returned by sysinfo
.
Implementations
impl SysInfo
[src]
impl SysInfo
[src]pub fn load_average(&self) -> (f64, f64, f64)
[src]
Returns the load average tuple.
The returned values represent the load average over time intervals of 1, 5, and 15 minutes, respectively.
pub fn uptime(&self) -> Duration
[src]
Returns the time since system boot.
pub fn process_count(&self) -> u16
[src]
Current number of processes.
pub fn swap_total(&self) -> u64
[src]
Returns the amount of swap memory in Bytes.
pub fn swap_free(&self) -> u64
[src]
Returns the amount of unused swap memory in Bytes.
pub fn ram_total(&self) -> u64
[src]
Returns the total amount of installed RAM in Bytes.
pub fn ram_unused(&self) -> u64
[src]
Returns the amount of completely unused RAM in Bytes.
“Unused” in this context means that the RAM in neither actively used by programs, nor by the operating system as disk cache or buffer. It is “wasted” RAM since it currently serves no purpose.