pub trait DebugInfo {
// Provided method
fn find_function_address(&self, name: &str) -> Option<u64> { ... }
}
Expand description
This class provides a generic interface for accessing debug information from different formats such as DWARF and PDB.
Users can use this interface to access high-level debug features like resolving function addresses.
Provided Methods§
fn find_function_address(&self, name: &str) -> Option<u64>
fn find_function_address(&self, name: &str) -> Option<u64>
Attempt to resolve the address of the function specified by name
.