A function that accepts a character
(
&self,
mut store: S,
arg0: char,
)
| 344 | } |
| 345 | /// A function that accepts a character |
| 346 | pub fn call_take_char<S: wasmtime::AsContextMut>( |
| 347 | &self, |
| 348 | mut store: S, |
| 349 | arg0: char, |
| 350 | ) -> wasmtime::Result<()> { |
| 351 | let callee = self.func_take_char(); |
| 352 | let () = callee.call(store.as_context_mut(), (arg0,))?; |
| 353 | Ok(()) |
| 354 | } |
| 355 | pub fn func_return_char( |
| 356 | &self, |
| 357 | ) -> wasmtime::component::TypedFunc<(), (char,)> { |
nothing calls this directly
no test coverage detected