usecrate::Data;/// Defines the dwarf format
/// [https://dwarfstd.org/doc/DWARF4.pdf]
#[allow(missing_docs)]pubmoddwarf;/// Structure representing the output of converting a debug symbol structure to data
pubstructDebugSegments{/// .debug_abbrev segment
pubdebug_abbrev: Data,
/// .debug_info segment
pubdebug_info: Data,
/// .debug_str segment
pubdebug_str: Data,
}