(&self, f: &mut std::fmt::Formatter<'_>)
| 11 | |
| 12 | impl std::fmt::Debug for DebugInfo { |
| 13 | fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { |
| 14 | let location = format!("{}:{}", self.file, self.line.unwrap_or(0)); |
| 15 | let name = &self.name; |
| 16 | write!( |
| 17 | f, |
| 18 | "DebugInfo {{ addr: {:x}, size: {:x}, name: {}, location: {} }}", |
| 19 | self.addr, self.size, name, location |
| 20 | ) |
| 21 | } |
| 22 | } |
| 23 | |
| 24 | /// Per-pid mounting info referencing a deduplicated debug info entry. |
nothing calls this directly
no outgoing calls
no test coverage detected