Add graphics information to system::Information

This commit is contained in:
Richard 2022-03-17 00:58:28 -03:00
parent 2b4d8a7b26
commit 5356bb9bdb

View file

@ -13,4 +13,8 @@ pub struct Information {
pub cpu_cores: Option<usize>,
/// Contains the total RAM size in KB.
pub memory_total: u64,
/// Contains the graphics backend.
pub graphics_backend: String,
/// Contains the graphics adapter.
pub graphics_adapter: String,
}