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