(value: &wasmtime_component_vallist_t)
| 58 | |
| 59 | impl From<&wasmtime_component_vallist_t> for Vec<Val> { |
| 60 | fn from(value: &wasmtime_component_vallist_t) -> Self { |
| 61 | value.as_slice().iter().map(Val::from).collect() |
| 62 | } |
| 63 | } |
| 64 | |
| 65 | impl From<&[Val]> for wasmtime_component_vallist_t { |