proc-mounts 0.2.2

Fetch active mounts and swaps on a Linux system
Documentation
# proc-mounts

Rust crate that provides easy access to data from the `/proc/swaps` and `/proc/mounts` files.

```rust
extern crate proc_mounts;

use proc_mounts::{MountIter, SwapIter};
use std::io;

fn main() -> io::Result<()> {
    println!("# Active Mounts");
    for mount in MountIter::new()? {
        println!("{:#?}", mount);
    }

    println!("# Active Swaps");
    for swap in SwapIter::new()? {
        println!("{:#?}", swap);
    }

    Ok(())
}
```