(ins: Instruction)
| 420 | impl From<Instruction> for u8 { |
| 421 | #[inline] |
| 422 | fn from(ins: Instruction) -> Self { |
| 423 | // SAFETY: there's no padding bits |
| 424 | unsafe { mem::transmute::<Instruction, Self>(ins) } |
| 425 | } |
| 426 | } |
| 427 | |
| 428 | impl TryFrom<u8> for Instruction { |