| 282 | /// Per-pid mounting info referencing a deduplicated unwind data entry. |
| 283 | #[derive(Debug, Serialize, Deserialize, Clone)] |
| 284 | pub struct MappedProcessUnwindData { |
| 285 | pub unwind_data_key: String, |
| 286 | #[serde(flatten)] |
| 287 | pub inner: ProcessUnwindData, |
| 288 | } |
| 289 | |
| 290 | #[derive(Serialize, Deserialize, Clone)] |
| 291 | pub struct ProcessUnwindData { |
nothing calls this directly
no outgoing calls
no test coverage detected