Describes the WebAssembly value types produced by a Rust value or tuple shape.
| 586 | |
| 587 | /// Describes the WebAssembly value types produced by a Rust value or tuple shape. |
| 588 | pub trait ToWasmTypes { |
| 589 | /// Return the flattened WebAssembly value types for this tuple shape. |
| 590 | fn wasm_types() -> Box<[WasmType]>; |
| 591 | } |
| 592 | |
| 593 | /// Describes the WebAssembly value types produced by a scalar Rust type. |
| 594 | pub trait ToWasmType { |
nothing calls this directly
no outgoing calls
no test coverage detected