pub trait DwarfData {
    fn has_dwarf_data(&self) -> bool;
    fn has_dwarf_section(&self, section: DwarfSection) -> 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.

Checks whether a DWARF section is present in the file.

Loads a specific dwarf section if its in the file.

Implementors