(data: Self::B)
| 76 | type B = [u8; 16]; |
| 77 | |
| 78 | fn from_raw(data: Self::B) -> Self { |
| 79 | Self::from(u128::from_le_bytes(data)) |
| 80 | } |
| 81 | |
| 82 | fn into_raw(self) -> Self::B { |
| 83 | u128::from(self).to_le_bytes() |
nothing calls this directly
no outgoing calls
no test coverage detected