psutil 5.4.0

Process and system monitoring library
Documentation
1
2
3
4
5
6
7
8
use std::collections::HashMap;
use std::io;

use crate::network::NetIfStats;

pub fn net_if_stats() -> io::Result<HashMap<String, NetIfStats>> {
	todo!()
}