macro_rules! impl_wasm_list {
($rust_elem_name:ty, $wasm_elem_name:ty, $wasm_list_name:ident) => { ... };
($rust_elem_name:ty, $wasm_elem_name:ty, $wasm_list_name:ident, $elem_wasm_abi:tt, $elem_copy:tt) => { ... };
}
Expand description
Convenience creator for generic WASM-exposable list This is exactly as the ones created by cddl-codegen so it is useful for utility functionality where those wouldn’t have been automatically generated.