[][src]Struct minidump::MinidumpSystemInfo

pub struct MinidumpSystemInfo {
    pub raw: MINIDUMP_SYSTEM_INFO,
    pub os: Os,
    pub cpu: Cpu,
}

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

impl MinidumpSystemInfo[src]

pub fn print<T: Write>(&self, f: &mut T) -> Result<()>[src]

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

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

Trait Implementations

impl<'a> MinidumpStream<'a> for MinidumpSystemInfo[src]

Auto Trait Implementations

impl RefUnwindSafe for MinidumpSystemInfo

impl Send for MinidumpSystemInfo

impl Sync for MinidumpSystemInfo

impl Unpin for MinidumpSystemInfo

impl UnwindSafe for MinidumpSystemInfo

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.