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