backtracer_core 0.0.7

A library to acquire a stack trace (backtrace) at runtime in a no-std Rust program.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#[inline(always)]
pub fn trace(_cb: &mut FnMut(&super::Frame) -> bool) {}

pub struct Frame;

impl Frame {
    pub fn ip(&self) -> *mut u8 {
        0 as *mut _
    }

    pub fn symbol_address(&self) -> *mut u8 {
        0 as *mut _
    }
}