| 34 | } |
| 35 | |
| 36 | pub struct Db { |
| 37 | // RocksDB tables. |
| 38 | pub trace_events: TraceEvents, |
| 39 | pub stack_traces: StackTraces, |
| 40 | pub stack_frames: StackFrames, |
| 41 | pub executables: Executables, |
| 42 | |
| 43 | // Custom data storage. |
| 44 | pub symbols: SymDb, |
| 45 | } |
| 46 | |
| 47 | impl Db { |
| 48 | /// Number of tables. |
nothing calls this directly
no outgoing calls
no test coverage detected