# Pastebin 9apVxKaO use std::arch::x86_64::*; #[derive(Clone, Copy)] pub struct Sse42F32x4(__m128); impl Deref for Sse42F32x4 { type Target = [f32; 4]; #[inline] fn deref(&self) -> &[f32; 4] { unsafe { mem::transmute(self) } } }