Enum minidump::CodeView [] [src]

pub enum CodeView {
    PDB {
        raw: CodeViewPDBRaw,
        file: String,
    },
    ELF {
        build_id: Vec<u8>,
    },
    Unknown {
        bytes: Vec<u8>,
    },
}

CodeView data describes how to locate debug symbols.

Variants

Indicates data is in a separate PDB file. raw contains the raw bytes, file is the PDB file name.

Fields of PDB

Indicates data is in an ELF binary with build ID build_id.

Fields of ELF

An unknown format, bytes are the raw bytes of data.

Fields of Unknown

Trait Implementations

impl Clone for CodeView
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more