rudy-dwarf 0.2.0

DWARF debug information parsing and querying for Rust debugging tools
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Type indexing and resolution logic

mod index;
mod resolution;

pub use index::{find_type_by_name, get_die_typename, TypeIndexEntry};
pub use resolution::{resolve_entry_type, resolve_type_offset, shallow_resolve_type};

use crate::Die;

pub type DieTypeDefinition<'db> = rudy_types::TypeDefinition<Die<'db>>;
pub type DieLayout<'db> = rudy_types::Layout<Die<'db>>;

impl rudy_types::Location for Die<'_> {}