(&self, f: &mut std::fmt::Formatter<'_>)
| 251 | |
| 252 | impl Debug for Component { |
| 253 | fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { |
| 254 | f.debug_struct("Component") |
| 255 | .field("guid", &self.guid()) |
| 256 | .field("display_name", &self.display_name()) |
| 257 | .field("name", &self.name()) |
| 258 | .field("components", &self.components().to_vec()) |
| 259 | .finish() |
| 260 | } |
| 261 | } |
| 262 | |
| 263 | impl PartialEq for Component { |
nothing calls this directly
no test coverage detected