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