(data: Self::B)
| 31 | type B = [u8; 16 + 8]; |
| 32 | |
| 33 | fn from_raw(data: Self::B) -> Self { |
| 34 | Self { |
| 35 | file_id: FileId::from_raw(data[0..16].try_into().unwrap()), |
| 36 | addr_or_line: u64::from_be_bytes(data[16..24].try_into().unwrap()), |
| 37 | } |
| 38 | } |
| 39 | |
| 40 | fn into_raw(self) -> Self::B { |
| 41 | let mut buf = Self::B::default(); |
nothing calls this directly
no outgoing calls
no test coverage detected