1use crate::records::register_x_64::RegisterX64; 2 3impl RegisterX64 { 4 #[inline] 5 pub const fn register_x_64_operator_ne(&self, rhs: RegisterX64) -> bool { 6 self.bits != rhs.bits 7 } 8}