1
2
3
4
5
6
7
///Memory information
pub struct SystemMemory {
    ///Total memory in bytes.
    pub total: u64,
    ///Available memory in bytes.
    pub avail: u64,
}