fn
fn stack_trace() -> *Vector<string>
Return the current call stack, one frame per element. The first entry is stack_trace's caller; the unwinder itself is filtered out. Returns an empty vector when the platform can't walk the stack (typically -O2 with frame pointers omitted).
fn buggy() {
for f in stack_trace() { println!(f); }
}