Struct minidump_processor::SystemInfo [] [src]

pub struct SystemInfo {
    pub os: OS,
    pub os_version: Option<String>,
    pub cpu: CPU,
    pub cpu_info: Option<String>,
    pub cpu_count: usize,
}

Information about the system that produced a Minidump.

Fields

The operating system that produced the minidump.

A string identifying the version of the operating system, such as "5.1.2600 Service Pack 2" or "10.4.8 8L2127", if present.

The CPU on which the dump was produced.

A string further identifying the specific CPU, such as "GenuineIntel level 6 model 13 stepping 8", if present.

The number of processors in the system. Will be greater than one for multi-core systems.