Crates.io | sigar |
lib.rs | sigar |
version | 0.0.2 |
source | src |
created_at | 2015-08-29 07:25:17.226077 |
updated_at | 2015-12-11 23:55:55.315022 |
description | Rust bindings for libsigar for gathering system information. |
homepage | https://github.com/xoebus/rust-sigar |
repository | https://github.com/xoebus/rust-sigar |
max_upload_size | |
id | 2950 |
size | 2,971,888 |
Rust bindings for libsigar for portably gathering system information.
libsigar
.fn main() {
match sigar::memory() {
Ok(memory) => println!("Memory: {:?}", memory),
Err(error) => println!("Error!: {:?}", error),
};
}