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::NetIfAddr;

pub fn net_if_addrs() -> io::Result<HashMap<String, Vec<NetIfAddr>>> {
	todo!()
}