1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
//! Easy to use DWARF abstraction for Rust.
//!
//! Provides an abstraction over DWARF. The abstraction provides a one function solution for
//! retrieving debug information from DWARF.
//! Here are some of the  advantages:
//! - Easy to use
//!

/// Provides one function solutions for doing a stack trace
pub mod call_stack;

/// Provides one function solutions for handling evaluation the DWARF location attribute.
pub mod evaluate;

/// Defines a struct containing information about the registers
pub mod registers;

/// Provides one function solutions for retrieving the source location declaration information.
pub mod source_information;

/// Provides some useful functions for reading the DWARF format.
pub mod utils;

/// Provides one function solutions for retrieving information about a variable.
pub mod variable;