Split the wrapper back into its two component values.
(self)
| 758 | |
| 759 | /// Split the wrapper back into its two component values. |
| 760 | pub fn into_inner(self) -> (T1, T2) { |
| 761 | (self.0, self.1) |
| 762 | } |
| 763 | } |
| 764 | |
| 765 | impl<T1, T2> From<(T1, T2)> for WasmTupleChain<T1, T2> { |