File: example.rs

package info (click to toggle)
rust-proc-mounts 0.3.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 144 kB
  • sloc: makefile: 4
file content (29 lines) | stat: -rw-r--r-- 761 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
extern crate proc_mounts;

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

fn main() -> io::Result<()> {
    println!("# Active Mounts");
    for mount in MountIter::new()? {
        match mount {
            Ok(mount) => println!("{:?}: {:?}", mount.source, mount.dest),
            Err(why) => eprintln!("error reading mount: {}", why),
        }
    }

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

    println!("# Active Fstab Mounts");
    for mount in MountIter::new_from_file("/etc/fstab")? {
        match mount {
            Ok(mount) => println!("{:?}: {:?}", mount.source, mount.dest),
            Err(why) => eprintln!("error reading mount: {}", why),
        }
    }

    Ok(())
}