(&self, f: &mut fmt::Formatter)
| 547 | impl fmt::Display for Drive |
| 548 | { |
| 549 | fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result |
| 550 | { |
| 551 | let (size, unit) = self.formatted_size(); |
| 552 | write!(f, "{} {} ({} {})", self.model, self.ser, size, unit) |
| 553 | } |
| 554 | } |
nothing calls this directly
no test coverage detected