(&self, other: &Path)
| 518 | impl cmp::PartialEq for Path { |
| 519 | #[inline] |
| 520 | fn eq(&self, other: &Path) -> bool { |
| 521 | self.components() == other.components() |
| 522 | } |
| 523 | } |
| 524 | |
| 525 | impl AsRef<Path> for str { |
nothing calls this directly
no test coverage detected