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