Gets the inner value of [`Self::Real`].
(self)
| 1585 | impl AnyInstruction { |
| 1586 | /// Gets the inner value of [`Self::Real`]. |
| 1587 | pub const fn real(self) -> Option<Instruction> { |
| 1588 | match self { |
| 1589 | Self::Real(ins) => Some(ins), |
| 1590 | _ => None, |
| 1591 | } |
| 1592 | } |
| 1593 | |
| 1594 | /// Gets the inner value of [`Self::Pseudo`]. |
| 1595 | pub const fn pseudo(self) -> Option<PseudoInstruction> { |
no test coverage detected