system_info/data/
mem.rs

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