(&self, f: &mut fmt::Formatter)
| 12 | |
| 13 | impl fmt::Display for PciLocation { |
| 14 | fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { |
| 15 | write!(f, "{:04X}:{:02X}:{:02X}", |
| 16 | self.bus, self.slot, self.function) |
| 17 | } |
| 18 | } |
| 19 | |
| 20 | impl PciLocation { |
nothing calls this directly
no outgoing calls
no test coverage detected