1use crate::records::path::Path; 2 3impl Path { 4 pub fn operator_ne(&self, other: &Path) -> bool { 5 !self.operator_eq(other) 6 } 7}