#[derive(Clone, Debug)]
pub struct Information {
pub system_name: Option<String>,
pub system_kernel: Option<String>,
pub system_version: Option<String>,
pub system_short_version: Option<String>,
pub cpu_brand: String,
pub cpu_cores: Option<usize>,
pub memory_total: u64,
pub memory_used: Option<u64>,
pub graphics_backend: String,
pub graphics_adapter: String,
}