enumstd.pdb.DebugSubsectionKind[src]

Fields

none = 0
symbols = 0xf1
lines = 0xf2
string_table = 0xf3
file_checksums = 0xf4
frame_data = 0xf5
inlinee_lines = 0xf6
cross_scope_imports = 0xf7
cross_scope_exports = 0xf8
il_lines = 0xf9
func_md_token_map = 0xfa
type_md_token_map = 0xfb
merged_assembly_input = 0xfc
coff_symbol_rva = 0xfd

Source Code

Source code
pub const DebugSubsectionKind = enum(u32) {
    none = 0,
    symbols = 0xf1,
    lines = 0xf2,
    string_table = 0xf3,
    file_checksums = 0xf4,
    frame_data = 0xf5,
    inlinee_lines = 0xf6,
    cross_scope_imports = 0xf7,
    cross_scope_exports = 0xf8,

    // These appear to relate to .Net assembly info.
    il_lines = 0xf9,
    func_md_token_map = 0xfa,
    type_md_token_map = 0xfb,
    merged_assembly_input = 0xfc,

    coff_symbol_rva = 0xfd,
}