(&self, other: &Self)
| 66 | |
| 67 | impl PartialEq for ContextFilePath { |
| 68 | fn eq(&self, other: &Self) -> bool { |
| 69 | let self_path = self.get_path_as_str(); |
| 70 | let other_path = other.get_path_as_str(); |
| 71 | |
| 72 | self_path == other_path |
| 73 | } |
| 74 | } |
| 75 | |
| 76 | impl PartialEq<str> for ContextFilePath { |