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