| 529 | } |
| 530 | |
| 531 | pub trait IntoWasmValues { |
| 532 | fn into_wasm_values(self) -> Vec<WasmValue>; |
| 533 | } |
| 534 | |
| 535 | pub trait FromWasmValues: Sized { |
| 536 | fn from_wasm_values(values: &[WasmValue]) -> Result<Self>; |
nothing calls this directly
no outgoing calls
no test coverage detected