sigar 0.0.1

Rust bindings for libsigar for gathering system information.
Documentation

rust-sigar

Rust bindings for libsigar for portably gathering system information.

usage

  1. Build and install libsigar.
  2. Use this library.
fn main() {
    match sigar::memory() {
        Ok(memory) => println!("Memory: {:?}", memory),
        Err(error) => println!("Error!: {:?}", error),
    };
}