1 2 3 4 5 6 7 8 9 10 11
macro_rules! impl_for_primitives { ($ty:ty) => { impl $crate::Touchable for $ty { fn touch(&self) { let _ = core::hint::black_box::<$ty>(*self); } } }; } pub(crate) use impl_for_primitives;