(self)
| 38 | } |
| 39 | |
| 40 | fn into_raw(self) -> Self::B { |
| 41 | let mut buf = Self::B::default(); |
| 42 | buf[0..16].copy_from_slice(&self.file_id.into_raw()); |
| 43 | buf[16..24].copy_from_slice(&self.addr_or_line.to_be_bytes()); |
| 44 | buf |
| 45 | } |
| 46 | } |
| 47 | |
| 48 | impl From<ArchivedFrameId> for FrameId { |
nothing calls this directly
no outgoing calls
no test coverage detected