| 22 | /// incoming value and at the end only outgoing values. |
| 23 | #[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)] |
| 24 | struct HintKey { |
| 25 | /// Bit-pack in 64 bits. |
| 26 | /// |
| 27 | /// value:32 inst:31 pos:1 |
| 28 | bits: u64, |
| 29 | } |
| 30 | |
| 31 | impl fmt::Display for HintKey { |
| 32 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { |
nothing calls this directly
no outgoing calls
no test coverage detected