(&self, f: &mut fmt::Formatter<'_>)
| 656 | |
| 657 | impl fmt::Debug for VirtioInputUnion { |
| 658 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { |
| 659 | unsafe { |
| 660 | f.debug_struct("VirtioInputUnion") |
| 661 | .field("abs", &self.abs) |
| 662 | .field("ids", &self.ids) |
| 663 | .finish() |
| 664 | } |
| 665 | } |
| 666 | } |
| 667 | |
| 668 | #[repr(C)] |
nothing calls this directly
no outgoing calls
no test coverage detected