(x: ArchivedFrameId)
| 47 | |
| 48 | impl From<ArchivedFrameId> for FrameId { |
| 49 | fn from(x: ArchivedFrameId) -> Self { |
| 50 | FrameId { |
| 51 | file_id: x.file_id.into(), |
| 52 | addr_or_line: x.addr_or_line, |
| 53 | } |
| 54 | } |
| 55 | } |
| 56 | |
| 57 | impl_ord_from_table_key!(FrameId); |
nothing calls this directly
no outgoing calls
no test coverage detected