(self, arg: OpArg)
| 1737 | /// T::from_op_arg(self) must succeed |
| 1738 | #[inline(always)] |
| 1739 | pub unsafe fn get_unchecked(self, arg: OpArg) -> T { |
| 1740 | // SAFETY: requirements forwarded from caller |
| 1741 | unsafe { T::try_from(u32::from(arg)).unwrap_unchecked() } |
| 1742 | } |
| 1743 | } |
| 1744 | |
| 1745 | impl<T: OpArgType> PartialEq for Arg<T> { |