Internal helper type to format an output instruction.
| 337 | |
| 338 | /// Internal helper type to format an output instruction. |
| 339 | pub(crate) struct DisplayOutputInst<'a, F, R> { |
| 340 | pub(crate) inst: OutputInst<'a>, |
| 341 | pub(crate) block: Block, |
| 342 | pub(crate) output: &'a Output<'a, F, R>, |
| 343 | } |
| 344 | |
| 345 | impl<F: Function, R: RegInfo> fmt::Display for DisplayOutputInst<'_, F, R> { |
| 346 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { |
nothing calls this directly
no outgoing calls
no test coverage detected