Module std::backtrace_rs::backtrace::dbghelp
source · Expand description
Backtrace strategy for MSVC platforms.
This module contains the ability to generate a backtrace on MSVC using one
of two possible methods. The StackWalkEx
function is primarily used if
possible, but not all systems have that. Failing that the StackWalk64
function is used instead. Note that StackWalkEx
is favored because it
handles debuginfo internally and returns inline frame information.
Note that all dbghelp support is loaded dynamically, see src/dbghelp.rs
for more information about that.