useminidump::system_info::{Cpu, Os};/// Information about the system that produced a `Minidump`.
pubstructSystemInfo{/// The operating system that produced the minidump
pubos: Os,
/// A string identifying the version of the operating system
////// This may look like "5.1.2600 Service Pack 2" or "10.4.8 8L2127", if present
pubos_version:Option<String>,
/// The CPU on which the dump was produced
pubcpu: Cpu,
/// A string further identifying the specific CPU
////// For example, "GenuineIntel level 6 model 13 stepping 8", if present.
pubcpu_info:Option<String>,
/// The microcode version of the cpu
pubcpu_microcode_version:Option<u64>,
/// The number of processors in the system
////// Will be greater than one for multi-core systems.
pubcpu_count:usize,
}