pub struct MinidumpSystemInfo {
    pub raw: MINIDUMP_SYSTEM_INFO,
    pub os: Os,
    pub cpu: Cpu,
    /* private fields */
}
Expand description

Information about the system that generated the minidump.

Fields

raw: MINIDUMP_SYSTEM_INFO

The MINIDUMP_SYSTEM_INFO direct from the minidump

os: Os

The operating system that generated the minidump

cpu: Cpu

The CPU on which the minidump was generated

Implementations

Write a human-readable description of this MinidumpSystemInfo to f.

This is very verbose, it is the format used by minidump_dump.

If the minidump was generated on:

  • Windows: Returns the the name of the Service Pack.
  • macOS: Returns the product build number.
  • Linux: Returns the contents of uname -srvmo.

Returns a string describing the cpu’s vendor and model.

Strings identifying the version and build number of the operating system. Returns a tuple in the format of (version, build number). This may be useful to use if the minidump was created on a Linux machine and is an producing empty-ish version number (0.0.0).

Tries to parse the version number from the build if it cannot be found in the version string. If the stream already contains a valid version number or parsing from the build string fails, this will return what’s directly stored in the stream.

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

The stream type constant used in the md::MDRawDirectory entry. This is usually a MINIDUMP_STREAM_TYPE but it’s left as a u32 to allow external projects to add support for their own custom streams. Read more

Read this MinidumpStream type from bytes. 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.