(v1: UnwindDataV1)
| 127 | |
| 128 | impl From<UnwindDataV1> for UnwindDataV2 { |
| 129 | fn from(v1: UnwindDataV1) -> Self { |
| 130 | Self { |
| 131 | path: v1.path, |
| 132 | timestamp: None, |
| 133 | avma_range: v1.avma_range, |
| 134 | base_avma: v1.base_avma, |
| 135 | base_svma: v1.base_svma, |
| 136 | eh_frame_hdr: v1.eh_frame_hdr, |
| 137 | eh_frame_hdr_svma: v1.eh_frame_hdr_svma, |
| 138 | eh_frame: v1.eh_frame, |
| 139 | eh_frame_svma: v1.eh_frame_svma, |
| 140 | } |
| 141 | } |
| 142 | } |
| 143 | |
| 144 | /// Pid-agnostic unwind data. |
nothing calls this directly
no outgoing calls
no test coverage detected