| 5 | |
| 6 | #[derive(Clone, Copy)] |
| 7 | pub struct PciLocation { |
| 8 | pub bus: u16, |
| 9 | pub slot: u16, |
| 10 | pub function: u16 |
| 11 | } |
| 12 | |
| 13 | impl fmt::Display for PciLocation { |
| 14 | fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { |
nothing calls this directly
no outgoing calls
no test coverage detected