| 41 | |
| 42 | #[derive(Clone, Debug)] |
| 43 | pub(crate) enum WasmTy { |
| 44 | ByteBuffer, |
| 45 | ByteArray, |
| 46 | String, |
| 47 | ValType(ValType), |
| 48 | } |
| 49 | |
| 50 | impl From<ValType> for WasmTy { |
| 51 | fn from(val: ValType) -> Self { |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…