rust_debug/lib.rs
1//! Easy to use DWARF abstraction for Rust.
2//!
3//! Provides an abstraction over DWARF. The abstraction provides a one function solution for
4//! retrieving debug information from DWARF.
5//! Here are some of the advantages:
6//! - Easy to use
7//!
8
9/// Provides one function solutions for doing a stack trace
10pub mod call_stack;
11
12/// Provides one function solutions for handling evaluation the DWARF location attribute.
13pub mod evaluate;
14
15/// Defines a struct containing information about the registers
16pub mod registers;
17
18/// Provides one function solutions for retrieving the source location declaration information.
19pub mod source_information;
20
21/// Provides some useful functions for reading the DWARF format.
22pub mod utils;
23
24/// Provides one function solutions for retrieving information about a variable.
25pub mod variable;