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