pub struct MINIDUMP_SYSTEM_INFO {
Show 13 fields pub processor_architecture: u16, pub processor_level: u16, pub processor_revision: u16, pub number_of_processors: u8, pub product_type: u8, pub major_version: u32, pub minor_version: u32, pub build_number: u32, pub platform_id: u32, pub csd_version_rva: u32, pub suite_mask: u16, pub reserved2: u16, pub cpu: CPU_INFORMATION,
}
Expand description

Processor and operating system information

This struct matches the Microsoft struct of the same name.

Fields

processor_architecture: u16

The system’s processor architecture

Known values are defined in ProcessorArchitecture.

processor_level: u16

x86 (5 = 586, 6 = 686 …) or ARM (6 = ARMv6, 7 = ARMv7 …) CPU level

processor_revision: u16

For x86, 0xMMSS where MM=model, SS=stepping

number_of_processors: u8product_type: u8major_version: u32minor_version: u32build_number: u32platform_id: u32

The operating system platform

Known values are defined in PlatformId.

csd_version_rva: u32suite_mask: u16reserved2: u16cpu: CPU_INFORMATION

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.