system-info 0.1.2

Library to get system information
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
pub mod cpu;
pub mod network;
pub mod mem;

pub use crate::data::host::HostName;

impl HostName {
    ///Retrieves host's name.
    pub fn get() -> Option<HostName> {
        Some(HostName::new())
    }
}