pub trait DwarfData {
    fn has_dwarf_data(&self) -> bool;
    fn get_dwarf_section(
        &self,
        section: DwarfSection
    ) -> Option<DwarfSectionData<'_>>; }
Expand description

Provides access to DWARF debugging information in object files.

Required Methods

Checks whether this object contains DWARF infos.

Loads a specific dwarf section if its in the file.

Implementors