Gets the inner value of [`Self::Pseudo`].
(self)
| 1593 | |
| 1594 | /// Gets the inner value of [`Self::Pseudo`]. |
| 1595 | pub const fn pseudo(self) -> Option<PseudoInstruction> { |
| 1596 | match self { |
| 1597 | Self::Pseudo(ins) => Some(ins), |
| 1598 | _ => None, |
| 1599 | } |
| 1600 | } |
| 1601 | |
| 1602 | /// Same as [`Self::real`] but panics if wasn't called on [`Self::Real`]. |
| 1603 | /// |
no test coverage detected