1use crate::records::string_singleton::StringSingleton; 2 3impl StringSingleton { 4 #[inline] 5 pub fn operator_eq(&self, rhs: &StringSingleton) -> bool { 6 self.value == rhs.value 7 } 8}