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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
package blazesym
// Sym is the result of address symbolization by Symbolizer.
// See: https://docs.rs/blazesym-c/latest/blazesym_c/struct.blaze_sym.html
type Sym struct
// CodeInfo describes source code location information for a symbol or inlined function.
// See: https://docs.rs/blazesym-c/latest/blazesym_c/struct.blaze_symbolize_code_info.html
type CodeInfo struct
// InlinedFn represents an inlined function.
// See: https://docs.rs/blazesym-c/latest/blazesym_c/struct.blaze_symbolize_inlined_fn.html
type InlinedFn struct