| 2 | |
| 3 | #[derive(Hash, PartialEq, Eq, Clone, Serialize, Deserialize)] |
| 4 | pub struct DebugInfo { |
| 5 | pub addr: u64, |
| 6 | pub size: u64, |
| 7 | pub name: String, |
| 8 | pub file: String, |
| 9 | pub line: Option<u32>, |
| 10 | } |
| 11 | |
| 12 | impl std::fmt::Debug for DebugInfo { |
| 13 | fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { |
nothing calls this directly
no outgoing calls
no test coverage detected