1use crate::records::field::Field; 2 3impl Field { 4 pub fn operator_ne(&self, rhs: &Field) -> bool { 5 !self.operator_eq(rhs) 6 } 7}