| 24 | #[derive(Copy, Clone, PartialEq, Eq, Hash)] |
| 25 | #[cfg_attr(feature = "enable-serde", derive(Serialize, Deserialize))] |
| 26 | pub struct Type(u16); |
| 27 | |
| 28 | /// Not a valid type. Can't be loaded or stored. Can't be part of a SIMD vector. |
| 29 | pub const INVALID: Type = Type(0); |