blob: 2100d110a994b0f1792b422addabf8431b7fd330 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
/// Contains informations about the system (e.g. system name, processor, memory, graphics adapter).
#[derive(Debug)]
pub struct Information {
system_name: String,
system_kernel: String,
system_version: String,
cpu_brand: String,
cpu_vendor: String,
cpu_name: String,
cpu_cores: String,
memory_total: String,
}
|