Struct gimli::read::DebugTypes [−][src]
pub struct DebugTypes<R> { /* fields omitted */ }
Expand description
The DebugTypes
struct represents the DWARF type information
found in the .debug_types
section.
Implementations
Construct a new DebugTypes
instance from the data in the .debug_types
section.
It is the caller’s responsibility to read the .debug_types
section and
present it as a &[u8]
slice. That means using some ELF loader on
Linux, a Mach-O loader on OSX, etc.
use gimli::{DebugTypes, LittleEndian};
let debug_types = DebugTypes::new(read_debug_types_section_somehow(), LittleEndian);
Create a DebugTypes
section that references the data in self
.
This is useful when R
implements Reader
but T
does not.
Example Usage
// Read the DWARF section into a `Vec` with whatever object loader you're using.
let owned_section: gimli::DebugTypes<Vec<u8>> = load_section();
// Create a reference to the DWARF section.
let section = owned_section.borrow(|section| {
gimli::EndianSlice::new(§ion, gimli::LittleEndian)
});
Iterate the type-units in this .debug_types
section.
use gimli::{DebugTypes, LittleEndian};
let debug_types = DebugTypes::new(read_debug_types_section_somehow(), LittleEndian);
let mut iter = debug_types.units();
while let Some(unit) = iter.next().unwrap() {
println!("unit's length is {}", unit.unit_length());
}
Can be used with
FallibleIterator
.
Trait Implementations
Returns the “default value” for a type. Read more
Returns the ELF section name for this type.
Returns the ELF section name (if any) for this type when used in a dwo file. Read more
Try to load the section using the given loader function.
fn lookup_offset_id(&self, id: ReaderOffsetId) -> Option<(SectionId, R::Offset)> where
R: Reader,
fn lookup_offset_id(&self, id: ReaderOffsetId) -> Option<(SectionId, R::Offset)> where
R: Reader,
Returns the Reader
for this section.
Auto Trait Implementations
impl<R> RefUnwindSafe for DebugTypes<R> where
R: RefUnwindSafe,
impl<R> Send for DebugTypes<R> where
R: Send,
impl<R> Sync for DebugTypes<R> where
R: Sync,
impl<R> Unpin for DebugTypes<R> where
R: Unpin,
impl<R> UnwindSafe for DebugTypes<R> where
R: UnwindSafe,
Blanket Implementations
Mutably borrows from an owned value. Read more